Skip to content

Instantly share code, notes, and snippets.

@escamoteur
Created January 29, 2020 15:03
Show Gist options
  • Save escamoteur/924d7407c9ff7f37792bb4cab8394620 to your computer and use it in GitHub Desktop.
Save escamoteur/924d7407c9ff7f37792bb4cab8394620 to your computer and use it in GitHub Desktop.
// return Column(
// mainAxisSize: MainAxisSize.min,
// children: <Widget>[
// Container(
// height: 50.0,
// color: Colors.red,
// ),
// Row(
// crossAxisAlignment: CrossAxisAlignment.start,
// children: <Widget>[
// Expanded(
// flex: 40,
// child: Column(
// crossAxisAlignment: CrossAxisAlignment.stretch,
// mainAxisSize: MainAxisSize.min,
// children: <Widget>[
// Container(
// height: 50,
// width: 50.0,
// color: Colors.blue,
// ),
// Row(
// children: <Widget>[
// Container(
// height: 50,
// width: 50.0,
// color: Colors.orange,
// ),
// Expanded(
// child: Container(
// height: 50,
// width: 50.0,
// color: Colors.purple,
// ),
// ),
// ],
// ),
// ],
// ),
// ),
// Flexible(
// flex: 60,
// child: Container(
// alignment: Alignment.center,
// padding: const EdgeInsets.symmetric(vertical: 16.0),
// child: Image.file(
// File(target.imagePath),
// fit: BoxFit.scaleDown,
// ),
// ),
// ),
// ],
// )
// ],
// );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment