Skip to content

Instantly share code, notes, and snippets.

@erickzanardo
Created January 10, 2022 20:48
Show Gist options
  • Save erickzanardo/f25409a367d3129bc3a095640e830c34 to your computer and use it in GitHub Desktop.
Save erickzanardo/f25409a367d3129bc3a095640e830c34 to your computer and use it in GitHub Desktop.
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