Created
December 19, 2020 15:39
-
-
Save CoderJava/df9413ca15f73a9d122ceca57ca2faed to your computer and use it in GitHub Desktop.
Flutter Instagram Desktop (rev 1)
This file contains hidden or 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'; | |
| final color1 = Color(0xFF282A34); | |
| final color2 = Color(0XFF3C3F51); | |
| final color3 = Color(0xFFE2336B); | |
| final color4 = Color(0xFFFCAC46); | |
| final fontFamilyAvenir = 'Avenir'; | |
| final fontFamilyBillabong = 'Billabong'; | |
| void main() => runApp(App()); | |
| class App extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| home: HomePage(), | |
| debugShowCheckedModeBanner: false, | |
| ); | |
| } | |
| } | |
| class HomePage extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return Scaffold( | |
| body: Center( | |
| child: Text('Hello World'), | |
| ), | |
| ); | |
| } | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment