Created
January 29, 2020 15:03
-
-
Save escamoteur/924d7407c9ff7f37792bb4cab8394620 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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