Skip to content

Instantly share code, notes, and snippets.

@ivnsch
Last active March 13, 2019 22:50
Show Gist options
  • Save ivnsch/bc148f591faa55e36c6ea67ab4de769b to your computer and use it in GitHub Desktop.
Save ivnsch/bc148f591faa55e36c6ea67ab4de769b to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(),
body: Row(children: [
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.end,
children: [
Material(
color: Colors.red,
child: Text("lsjdka sldkjflsk fjsklfj slkfjs flksfjl ajd"),
),
],
))
]),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment