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

ITE 397 Activity

 1. Create a database and name it db_your_family_name (proceed to #2 if it already exist). 2. Create the table tblproducts     prod_id      ...