1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2025-11-08 12:39:17 +00:00
Files
flutter-examples/using_snackbar/lib/main.dart
Nishant Srivastava 959888ab4b added: using_snackbar
2018-01-20 03:51:11 +05:30

20 lines
395 B
Dart

import 'package:flutter/material.dart';
void main() {
runApp(new MaterialApp(home: new ContactPage()));
}
class ContactPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
title: new Text("Using SnackBar"),
),
body: new Center(
child: new Text("Hello World!"),
),
);
}
}