Flutter Tutorials

Flutter app development tutorials


flutter – SizedBox expand

main.dart


import 'package:flutter/material.dart';

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

bodyContent(){
  return const SizedBox.expand(
      child: DecoratedBox(
          decoration: BoxDecoration(
              color: Colors.black38
          )
      )
  );
}

More flutter tutorials



About Me

Flutter Developer

Design a site like this with WordPress.com
Get started