Skip to content

Instantly share code, notes, and snippets.

@CoderJava
Created December 19, 2020 15:39
Show Gist options
  • Select an option

  • Save CoderJava/df9413ca15f73a9d122ceca57ca2faed to your computer and use it in GitHub Desktop.

Select an option

Save CoderJava/df9413ca15f73a9d122ceca57ca2faed to your computer and use it in GitHub Desktop.
Flutter Instagram Desktop (rev 1)
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