Skip to content

Commit 86875c7

Browse files
committed
Skeleton ready
1 parent 2a43de7 commit 86875c7

File tree

11 files changed

+1067
-68
lines changed

11 files changed

+1067
-68
lines changed

lib/config/constants.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
class Constants{
2+
static const BLOG_API = 'https://adityadroid-medium.herokuapp.com/@adityadroid';
3+
static const MEDIUM_IMAGE_CDN = 'https://miro.medium.com/';
4+
}

lib/main.dart

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,16 @@ class MyApp extends StatelessWidget {
1414
//* Custom Google Font
1515
fontFamily: 'GoogleSans',
1616
primarySwatch: Colors.blue,
17-
primaryColor: Colors.black ,
17+
primaryColor: Colors.black,
1818
accentColor: Colors.blue,
1919
disabledColor: Colors.grey,
2020
cardColor: Color(0xff1f2124),
2121
canvasColor: Colors.black,
2222
brightness: Brightness.dark,
23-
buttonTheme: Theme.of(context).buttonTheme.copyWith(colorScheme: ColorScheme.dark()),
23+
buttonTheme: Theme.of(context).buttonTheme.copyWith(
24+
colorScheme: ColorScheme.dark(),
25+
buttonColor: Colors.blue,
26+
splashColor: Colors.black),
2427
appBarTheme: AppBarTheme(
2528
elevation: 0.0,
2629
),
@@ -29,4 +32,3 @@ class MyApp extends StatelessWidget {
2932
);
3033
}
3134
}
32-

0 commit comments

Comments
 (0)