Flutter Flutter Layout Sample
Flutter: Row
November 20, 2019
0
, ,

MainAxisAlignment

CrossAxisAlignment

Row(
  mainAxisAlignment: MainAxisAlignment.center,
  mainAxisSize: MainAxisSize.max,
  crossAxisAlignment: CrossAxisAlignment.center,
  children: [
  Container(
    padding: const EdgeInsets.all(0.0),
    color: Colors.cyanAccent,
    width: 80.0,
    height: 80.0,
  ),
  Container(
    padding: const EdgeInsets.all(0.0),
    color: Colors.blueAccent,
    width: 80.0,
    height: 80.0,
  ),
  Container(
    padding: const EdgeInsets.all(0.0),
    color: Colors.orangeAccent,
    width: 80.0,
    height: 80.0,
  ),
  ],
),

About author

ZERIN

CEO & Founder (BdBooking.com - Online Hotel Booking System), CEO & Founder (TaskGum.com - Task Managment Software), CEO & Founder (InnKeyPro.com - Hotel ERP), Software Engineer & Solution Architect

AndroidManifest.xml

flutter – android – http.get never works in deployed device / release mode

Recently while working & testing on my own app...

Read more

Flutter:: Chat UI Screen

lib/main.dart import 'package:flutter/foundation.d...

Read more

Flutter:: Proposed Folder Structure

Assets Folder — assets/fonts/— assets/...

Read more

There are 0 comments

Leave a Reply

Your email address will not be published. Required fields are marked *