Skip to content

Instantly share code, notes, and snippets.

@jediyeti
Created January 28, 2020 12:28
Show Gist options
  • Save jediyeti/2360fff17cc8c0934d0c41df901ae6f1 to your computer and use it in GitHub Desktop.
Save jediyeti/2360fff17cc8c0934d0c41df901ae6f1 to your computer and use it in GitHub Desktop.
Material components
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