Created
January 10, 2022 20:48
-
-
Save erickzanardo/f25409a367d3129bc3a095640e830c34 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
import 'package:flutter/material.dart'; | |
void main() => runApp(App()); | |
class App extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
home: Scaffold( | |
body: Row( | |
children: [ | |
Icon(Icons.message), | |
Column( | |
children: [ | |
Text('Title', style: Theme.of(context).textTheme.headline4), | |
Text( | |
'The quick brown fox jumps over the lazy dog. ' | |
'The quick brown fox jumps over the lazy dog. ' | |
'The quick brown fox jumps over the lazy dog. ' | |
'The quick brown fox jumps over the lazy dog. ' | |
'The quick brown fox jumps over the lazy dog. ', | |
), | |
], | |
), | |
], | |
), | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment