Skip to content

Instantly share code, notes, and snippets.

@mhmzdev
Last active April 4, 2020 05:38
Show Gist options
  • Save mhmzdev/344f9818e6f57efb9b748cbb74288489 to your computer and use it in GitHub Desktop.
Save mhmzdev/344f9818e6f57efb9b748cbb74288489 to your computer and use it in GitHub Desktop.
column
class SecondScreen extends StatelessWidget {
final darkThemeSecondScreen;
SecondScreen({this.darkThemeSecondScreen});
@override
Widget build(BuildContext context) {
return Scaffold(
body: SafeArea(
child: Padding(
padding: EdgeInsets.symmetric(horizontal: 10),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
]
),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment