Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cfdf4ec

Browse files
author
Echonox
authored
Merge pull request FlutterOpen#15 from echonox/master
All Signup Page Variations from Group 1
2 parents 55a0494 + c0b443f commit cfdf4ec

File tree

68 files changed

+3907
-40
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+3907
-40
lines changed

android/app/src/main/AndroidManifest.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
to allow setting breakpoints, to provide hot reload, etc.
77
-->
88
<uses-permission android:name="android.permission.INTERNET"/>
9+
<uses-permission android:name="android.permission.CAMERA" />
10+
<uses-permission android:name="android.permission.FLASHLIGHT" />
911

1012
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
1113
calls FlutterMain.startInitialization(this); in its onCreate method.
@@ -35,5 +37,9 @@
3537
<category android:name="android.intent.category.LAUNCHER"/>
3638
</intent-filter>
3739
</activity>
40+
<!-- Replace YOUR_API_KEY with your Google Place API Key -->
41+
<meta-data
42+
android:name="com.google.android.geo.API_KEY"
43+
android:value="YOUR_API_KEY"/>
3844
</application>
3945
</manifest>

android/build.gradle

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,14 @@ subprojects {
2929
task clean(type: Delete) {
3030
delete rootProject.buildDir
3131
}
32+
33+
subprojects {
34+
project.configurations.all {
35+
resolutionStrategy.eachDependency { details ->
36+
if (details.requested.group == 'com.android.support'
37+
&& !details.requested.name.contains('multidex') ) {
38+
details.useVersion "26.1.0"
39+
}
40+
}
41+
}
42+
}

assets/fonts/icons.ttf

2.04 KB
Binary file not shown.
269 KB
Binary file not shown.
273 KB
Binary file not shown.
255 KB
Binary file not shown.
260 KB
Binary file not shown.
256 KB
Binary file not shown.
261 KB
Binary file not shown.
254 KB
Binary file not shown.

0 commit comments

Comments
 (0)