Flutter Tutorials

Flutter app development tutorials


flutter – Column space around

main.dart


import 'package:flutter/material.dart';

void main() {
  runApp(
      MaterialApp(
          theme: ThemeData(primarySwatch: Colors.blue),
          home: Scaffold(
              appBar: AppBar(
                  title: const Text("Flutter - Column Space Around")
              ),
              body: bodyContent()
          )
      )
  );
}

bodyContent(){
  return Column(
      mainAxisAlignment: MainAxisAlignment.spaceAround,
      children: [
        Container(color: Colors.blueGrey.shade600, height: 85),
        Container(color: Colors.cyan.shade600, height: 85),
        Container(color: Colors.brown.shade600, height: 85),
        Container(color: Colors.pink.shade600, height: 85),
        Container(color: Colors.indigo.shade600, height: 85)
      ]
  );
}

More flutter tutorials



About Me

Flutter Developer

Design a site like this with WordPress.com
Get started