Flutter Tutorials

Flutter app development tutorials


flutter – SizedBox full height

main.dart


import 'package:flutter/material.dart';

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

bodyContent(){
  return const SizedBox(
      width: 50,
      height: double.infinity,
      child: DecoratedBox(
          decoration: BoxDecoration(
              color: Colors.black12
          )
      )
  );
}

More flutter tutorials



About Me

Flutter Developer

Design a site like this with WordPress.com
Get started