Skip to content

Instantly share code, notes, and snippets.

@SteveOye
Created May 22, 2020 01:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SteveOye/285acd6bb547a0bb99f251be77823bb5 to your computer and use it in GitHub Desktop.
Save SteveOye/285acd6bb547a0bb99f251be77823bb5 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
class HomePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.stretch,
children: <Widget>[
Text(
'Home Page',
style: TextStyle(
color: Colors.green,
fontSize: 32,
),
textAlign: TextAlign.center,
),
],
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment