Flutter Tutorials

Flutter app development tutorials


flutter – Container full width

main.dart


import 'package:flutter/material.dart';

void main(){
  runApp(
    MaterialApp(
      home: Scaffold(
        appBar: AppBar(
            title: const Text("Flutter - Container Full Width")
        ),
        body: Container(
          child: const Icon(Icons.light, size: 48),
          color: Colors.amber.shade200,
          padding: const EdgeInsets.all(32),
          width: double.infinity
        ),
      ),
    )
  );
}

More flutter tutorials



About Me

Flutter Developer

Design a site like this with WordPress.com
Get started