Created
January 28, 2020 12:28
-
-
Save jediyeti/2360fff17cc8c0934d0c41df901ae6f1 to your computer and use it in GitHub Desktop.
Material components
This file contains 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(MaterialApp( | |
title: 'Flutter Tutorial', | |
home: TutorialHome(), | |
)); | |
} | |
class TutorialHome extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
// Scaffold is a layout for the major Material Components. | |
return Scaffold( | |
appBar: AppBar( | |
leading: IconButton( | |
icon: Icon(Icons.menu), | |
tooltip: 'Navigation menu', | |
onPressed: null, | |
), | |
title: Text('Example title'), | |
actions: <Widget>[ | |
IconButton( | |
icon: Icon(Icons.search), | |
tooltip: 'Search', | |
onPressed: null, | |
), | |
], | |
), | |
// body is the majority of the screen. | |
body: Center( | |
child: Text('Hello, world!'), | |
), | |
floatingActionButton: FloatingActionButton( | |
tooltip: 'Add', // used by assistive technologies | |
child: Icon(Icons.add), | |
onPressed: null, | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment