Skip to content

Instantly share code, notes, and snippets.

@raviyadav5951
Created January 31, 2021 13: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 raviyadav5951/d2058c1581782809cc0cecdda74e44ed to your computer and use it in GitHub Desktop.
Save raviyadav5951/d2058c1581782809cc0cecdda74e44ed to your computer and use it in GitHub Desktop.
Row dart
Row(
children: <Widget>[
Expanded(
child: Text('Flutter Child One', textAlign: TextAlign.center),
),
Expanded(
child: Text('Flutter Child Two', textAlign: TextAlign.center),
),
Expanded(
child: FittedBox(
fit: BoxFit.contain, // this is simple image
child: const FlutterSampleLogo(),
),
),
],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment