Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
urmilshroff committed Jun 29, 2019
2 parents 5a46441 + 807bbd9 commit dc5f1a8
Show file tree
Hide file tree
Showing 37 changed files with 31 additions and 23 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,4 @@
!**/ios/**/default.pbxuser
!**/ios/**/default.perspectivev3
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
android/key.properties
1 change: 1 addition & 0 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ android {
signingConfig signingConfigs.release
minifyEnabled false
useProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
Expand Down
7 changes: 7 additions & 0 deletions android/app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## Flutter wrapper
-keep class io.flutter.app.** { *; }
-keep class io.flutter.plugin.** { *; }
-keep class io.flutter.util.** { *; }
-keep class io.flutter.view.** { *; }
-keep class io.flutter.** { *; }
-keep class io.flutter.plugins.** { *; }
4 changes: 0 additions & 4 deletions android/key.properties

This file was deleted.

File renamed without changes
File renamed without changes
Binary file removed assets/images/material1.gif
Binary file not shown.
Binary file removed assets/images/material2.gif
Binary file not shown.
Binary file removed assets/images/material3.gif
Binary file not shown.
Binary file removed assets/images/material4.gif
Binary file not shown.
Binary file removed assets/images/material5.gif
Binary file not shown.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file removed assets/images/neon1.png
Binary file not shown.
Binary file removed assets/images/neon2.jpg
Binary file not shown.
Binary file removed assets/images/neon3.jpg
Binary file not shown.
Binary file removed assets/images/neon4.jpg
Binary file not shown.
File renamed without changes
Binary file removed assets/images/wallpaper1.jpg
Binary file not shown.
Binary file removed assets/images/wallpaper2.jpg
Binary file not shown.
Binary file removed assets/images/wallpaper3.jpg
Binary file not shown.
Binary file removed assets/images/wallpaper4.jpg
Binary file not shown.
Binary file removed assets/images/wallpaper5.jpg
Diff not rendered.
Binary file removed assets/images/wallpaper6.jpg
Diff not rendered.
Binary file removed assets/images/wallpaper7.jpg
Diff not rendered.
Binary file removed assets/images/wallpaper8.jpg
Diff not rendered.
3 changes: 2 additions & 1 deletion lib/pages/about_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ class _MyAboutPageState extends State<MyAboutPage> {
shape: BoxShape.circle,
image: DecorationImage(
image: AssetImage(
'assets/images/urmil-vector.png')))),
'assets/images/profile/urmil-vector'
'.png')))),
SizedBox(
height: 15.0,
),
Expand Down
18 changes: 9 additions & 9 deletions lib/pages/gradients_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ import 'package:flutter/material.dart';
import 'package:gradient_widgets/gradient_widgets.dart';

List<String> swipingCardImages = [
'assets/images/album6.jpg',
'assets/images/album5.jpg',
'assets/images/album4.jpg',
'assets/images/album3.jpg',
'assets/images/album2.jpg',
'assets/images/album1.jpg',
'assets/images/music/album6.jpg',
'assets/images/music/album5.jpg',
'assets/images/music/album4.jpg',
'assets/images/music/album3.jpg',
'assets/images/music/album2.jpg',
'assets/images/music/album1.jpg',
];

List<String> swipingCardTitles = [
Expand Down Expand Up @@ -42,17 +42,17 @@ final parallaxCardItemsList = <ParallaxCardItem>[
ParallaxCardItem(
title: 'Blurryface',
body: 'Twenty One Pilots',
imagePath: 'assets/images/album8.jpg',
imagePath: 'assets/images/music/album8.jpg',
),
ParallaxCardItem(
title: 'Free Spirit',
body: 'Khalid',
imagePath: 'assets/images/album7.jpg',
imagePath: 'assets/images/music/album7.jpg',
),
ParallaxCardItem(
title: 'Overexposed',
body: 'Maroon 5',
imagePath: 'assets/images/album9.jpg',
imagePath: 'assets/images/music/album9.jpg',
),
];

Expand Down
10 changes: 5 additions & 5 deletions lib/widgets/bottom_sheet.dart
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ class _SexyBottomSheetState extends State<SexyBottomSheet>
child: ClipRRect(
borderRadius: BorderRadius.all(Radius.circular(15.0)),
child: Image.asset(
'assets/images/icon-nobg.png',
'assets/images/icon/icon-nobg.png',
fit: BoxFit.cover,
alignment: Alignment(lerp(0, 0), 0),
),
Expand Down Expand Up @@ -238,10 +238,10 @@ class ExpandedSheetItem extends StatelessWidget {
}

final List<SheetItem> items = [
SheetItem('assets/images/material1.gif', 'Material 1'),
SheetItem('assets/images/material2.gif', 'Material 2'),
SheetItem('assets/images/material3.gif', 'Material 3'),
SheetItem('assets/images/material4.gif', 'Material 4'),
SheetItem('assets/images/icon/icon-nobg.png', 'Icon 1'),
SheetItem('assets/images/icon/icon-nobg.png', 'Icon 2'),
SheetItem('assets/images/icon/icon-nobg.png', 'Icon 3'),
SheetItem('assets/images/icon/icon-nobg.png', 'Icon 4'),
];

class SheetItem {
Expand Down
10 changes: 6 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: dashboard_reborn
description: A very sexy Flutter template app
version: 1.0.0+1
version: 1.0.1+2

environment:
sdk: ">=2.1.0 <3.0.0"
Expand All @@ -23,14 +23,16 @@ dev_dependencies:
flutter_icons:
android: "launcher_icon"
ios: true
image_path_android: "assets/images/icon-nobg.png"
image_path_ios: "assets/images/icon-bg.png"
image_path_android: "assets/images/icon/icon-nobg.png"
image_path_ios: "assets/images/icon/icon-bg.png"

flutter:
uses-material-design: true

assets:
- assets/images/
- assets/images/icon/
- assets/images/music/
- assets/images/profile/

fonts:
- family: Rubik
Expand Down

0 comments on commit dc5f1a8

Please sign in to comment.