Skip to content

Instantly share code, notes, and snippets.

@zafarivaev
Created March 7, 2020 07:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zafarivaev/f45fea6aacaa687c0e0dc7c66c4c60d7 to your computer and use it in GitHub Desktop.
Save zafarivaev/f45fea6aacaa687c0e0dc7c66c4c60d7 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
import 'home_page.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Tabbed App',
theme: ThemeData(
primarySwatch: Colors.green,
),
home: HomePage(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment