File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 4
4
<uses-permission android : name =" android.permission.WRITE_EXTERNAL_STORAGE" />
5
5
<uses-permission android : name =" android.permission.READ_EXTERNAL_STORAGE" />
6
6
<uses-permission android : name =" android.permission.MANAGE_EXTERNAL_STORAGE" />
7
- <application
7
+ <uses-permission android : name =" android.permission.INTERNET" />
8
+ <application
8
9
android : label =" CoreCoder Develop"
9
10
android : icon =" @mipmap/ic_launcher"
10
11
android : requestLegacyExternalStorage =" true" >
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ const borderColor = Color(0xFF3BBA73);
30
30
31
31
class CoreCoderApp extends StatefulWidget {
32
32
const CoreCoderApp ({Key ? key}) : super (key: key);
33
- static const String version = "v0.0.3" ;
33
+ static const String version = "v0.0.3.1 " ;
34
34
static bool isDesktop = (Platform .isWindows || Platform .isLinux || Platform .isMacOS);
35
35
static bool isLandscape (BuildContext context){
36
36
var q = MediaQuery .of (context);
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments