Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update with upstream #2

Merged
merged 4 commits into from
Jun 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ https://github.com/zubairehman/flutter-boilerplate-project.git

Go to project root and execute the following command in console to get the required dependencies:

```
```
flutter pub get
```

Expand Down Expand Up @@ -219,7 +219,7 @@ widgets/

This file contains all the routes for your application.

```
```dart
import 'package:flutter/material.dart';

import 'ui/home/home.dart';
Expand All @@ -246,7 +246,7 @@ class Routes {

This is the starting point of the application. All the application level configurations are defined in this file i.e, theme, routes, title, orientation etc.

```
```dart
import 'package:boilerplate/routes.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/constants/colors.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'package:flutter/material.dart';

class AppColors {
AppColors._(); // this basically makes it so you can instantiate this class
AppColors._(); // this basically makes it so you can't instantiate this class

static const Map<int, Color> orange = const <int, Color>{
50: const Color(0xFFFCF2E7),
Expand Down