Skip to content

Instantly share code, notes, and snippets.

@MarcinusX
Created August 24, 2018 15:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save MarcinusX/6d565eacd12cf88a4cf03181a59a4b4c to your computer and use it in GitHub Desktop.
Save MarcinusX/6d565eacd12cf88a4cf03181a59a4b4c to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
import 'widget_utils.dart' show screenAwareSize;
class InputPage extends StatelessWidget {
Widget build(BuildContext context) {
return Scaffold(
body: Padding(
padding: MediaQuery.of(context).padding,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
_buildTitle(context),
Expanded(child: _buildCards(context)),
_buildBottom(context),
],
),
),
);
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment