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 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" >
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ const borderColor = Color(0xFF3BBA73);
3030
3131class 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);
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