LAYOUT WIDGETS IN ACTION

 Code for the body:

      body: Column(
        children: [
          const SizedBox(
            height: 100.0,
          ),
          Image.asset(
            "assets/images/bike.jpg",
            width: 300,
            height: 300,
            fit: BoxFit.cover,
          ),
          const Text(
            "My Bike",
            style: TextStyle(
              color: Colors.blue,
              fontSize: 30.0,
            ),
          ),
          const SizedBox(
            height: 20.0,
          ),
          Row(
            mainAxisAlignment: MainAxisAlignment.spaceEvenly,
            children: [
              Image.asset(
                "assets/images/google.jpg",
                width: 50.0,
                height: 50.0,
                fit: BoxFit.cover,
              ),
              Image.asset(
                "assets/images/twitter.jog",
                width: 50.0,
                height: 50.0,
                fit: BoxFit.cover,
              ),
              Image.asset(
                "assets/images/facebook.png",
                width: 50.0,
                height: 50.0,
                fit: BoxFit.cover,
              ),
            ],
          )
        ],
      ),

No comments:

Post a Comment

UNITY: USING FIREBALL TO ELIMINATE ENEMIES

 Code user in the video: Fireball Controller using System . Collections ; using System . Collections . Generic ; using UnityEngine ; publ...