🧩Row()

// Some code
Row(
          mainAxisAlignment: MainAxisAlignment.spaceEvenly,

          children: [
          // 1 widget(),
          
            const Text(
              'Hello',
              style: TextStyle(
                  fontSize: 30,
                  fontWeight: FontWeight.bold,
                  color: Colors.black,
                  backgroundColor: Colors.red),
            ),
            
            // 2 Widget(),
            
            const Icon(
              Icons.ac_unit,
              size: 90,
              color: Colors.green,
            ),

           // 3 Widget(),
            Container(
              height: 150,
              width: 200,
              color: Colors.green,
            ),
          ],
        ),

Last updated