Skip to content

Commit fa4228e

Browse files
authored
v0.0.3
Android internet access permission
2 parents 73a8351 + 423f16f commit fa4228e

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

android/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
55
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
66
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
7-
<application
7+
<uses-permission android:name="android.permission.INTERNET" />
8+
<application
89
android:label="CoreCoder Develop"
910
android:icon="@mipmap/ic_launcher"
1011
android:requestLegacyExternalStorage="true">

lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const borderColor = Color(0xFF3BBA73);
3030

3131
class CoreCoderApp extends StatefulWidget {
3232
const CoreCoderApp({Key? key}) : super(key: key);
33-
static const String version = "v0.0.3";
33+
static const String version = "v0.0.3.1";
3434
static bool isDesktop = (Platform.isWindows || Platform.isLinux || Platform.isMacOS);
3535
static bool isLandscape(BuildContext context){
3636
var q = MediaQuery.of(context);
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import 'package:flutter/material.dart';
2+
3+
class CCImageViewer extends StatelessWidget{
4+
@override
5+
Widget build(BuildContext context) {
6+
return SingleChildScrollView( );
7+
}
8+
9+
}

0 commit comments

Comments
 (0)