Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
PhotoShootFlutter
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ramesh Babu Puvvadi
PhotoShootFlutter
Commits
7248b815
Commit
7248b815
authored
Apr 11, 2024
by
Ramesh Babu Puvvadi
Browse files
Options
Browse Files
Download
Plain Diff
reverse
parents
b0bd2357
a98af82f
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
24 additions
and
18 deletions
+24
-18
Podfile.lock
ios/Podfile.lock
+1
-1
Info.plist
ios/Runner/Info.plist
+1
-1
RemoteData.dart
lib/Remote/RemoteData.dart
+1
-1
Home.dart
lib/Screen/Home.dart
+1
-1
MultipleImages.dart
lib/Screen/MultipleImages.dart
+11
-9
MyPieChart.dart
lib/Screen/MyPieChart.dart
+3
-1
PieChart.dart
lib/Screen/PieChart.dart
+2
-1
SplashScreen.dart
lib/Screen/SplashScreen.dart
+3
-2
main.dart
lib/main.dart
+1
-1
No files found.
ios/Podfile.lock
View file @
7248b815
...
@@ -112,4 +112,4 @@ SPEC CHECKSUMS:
...
@@ -112,4 +112,4 @@ SPEC CHECKSUMS:
PODFILE CHECKSUM: 1119d1c4de683e572c54a0dff7a594860d13ec5e
PODFILE CHECKSUM: 1119d1c4de683e572c54a0dff7a594860d13ec5e
COCOAPODS: 1.1
3.0
COCOAPODS: 1.1
5.2
ios/Runner/Info.plist
View file @
7248b815
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
<
k
e
y
>
CFBundleDevelopmentRegion
<
/k
e
y
>
<
k
e
y
>
CFBundleDevelopmentRegion
<
/k
e
y
>
<
string
>
$
(
DEVELOPMENT_LANGUAGE
)<
/string
>
<
string
>
$
(
DEVELOPMENT_LANGUAGE
)<
/string
>
<
k
e
y
>
CFBundleDisplayName
<
/k
e
y
>
<
k
e
y
>
CFBundleDisplayName
<
/k
e
y
>
<
string
>
P
hotoshoot
<
/string
>
<
string
>
p
hotoshoot
<
/string
>
<
k
e
y
>
CFBundleExecutable
<
/k
e
y
>
<
k
e
y
>
CFBundleExecutable
<
/k
e
y
>
<
string
>
$
(
EXECUTABLE_NAME
)<
/string
>
<
string
>
$
(
EXECUTABLE_NAME
)<
/string
>
<
k
e
y
>
CFBundleIdentifier
<
/k
e
y
>
<
k
e
y
>
CFBundleIdentifier
<
/k
e
y
>
...
...
lib/Remote/RemoteData.dart
View file @
7248b815
...
@@ -3,8 +3,8 @@ import 'dart:core';
...
@@ -3,8 +3,8 @@ import 'dart:core';
import
'dart:io'
;
import
'dart:io'
;
import
'package:flutter/foundation.dart'
;
import
'package:flutter/foundation.dart'
;
import
'package:http/http.dart'
as
http
;
import
'package:http/http.dart'
as
http
;
import
'package:photoshoot/Model/NamedFile.dart'
;
import
'../Model/LoginResponse.dart'
;
import
'../Model/LoginResponse.dart'
;
import
'../Model/NamedFile.dart'
;
import
'../Model/Store.dart'
;
import
'../Model/Store.dart'
;
import
'../Model/Upload.dart'
;
import
'../Model/Upload.dart'
;
...
...
lib/Screen/Home.dart
View file @
7248b815
import
'dart:async'
;
import
'dart:async'
;
import
'dart:io'
;
import
'dart:io'
;
import
'package:GrccaptureImages/Screen/Constants.dart'
;
import
'package:flutter/foundation.dart'
;
import
'package:flutter/foundation.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/services.dart'
;
import
'package:flutter/services.dart'
;
import
'package:image_picker/image_picker.dart'
;
import
'package:image_picker/image_picker.dart'
;
import
'package:flutter_barcode_scanner/flutter_barcode_scanner.dart'
import
'package:flutter_barcode_scanner/flutter_barcode_scanner.dart'
show
FlutterBarcodeScanner
,
ScanMode
;
show
FlutterBarcodeScanner
,
ScanMode
;
import
'package:photoshoot/Screen/Constants.dart'
;
class
Home
extends
StatefulWidget
{
class
Home
extends
StatefulWidget
{
const
Home
({
super
.
key
});
const
Home
({
super
.
key
});
...
...
lib/Screen/MultipleImages.dart
View file @
7248b815
...
@@ -6,14 +6,16 @@ import 'package:flutter/material.dart';
...
@@ -6,14 +6,16 @@ import 'package:flutter/material.dart';
import
'package:flutter/services.dart'
;
import
'package:flutter/services.dart'
;
import
'package:image_cropper/image_cropper.dart'
;
import
'package:image_cropper/image_cropper.dart'
;
import
'package:image_picker/image_picker.dart'
;
import
'package:image_picker/image_picker.dart'
;
import
'package:photoshoot/Model/NamedFile.dart'
;
import
'package:photoshoot/Model/Upload.dart'
;
import
'package:photoshoot/Remote/RemoteData.dart'
;
import
'package:photoshoot/Screen/Constants.dart'
;
import
'package:photoshoot/Screen/SignUp.dart'
;
import
'package:shared_preferences/shared_preferences.dart'
;
import
'package:shared_preferences/shared_preferences.dart'
;
import
'package:flutter_barcode_scanner/flutter_barcode_scanner.dart'
;
import
'package:flutter_barcode_scanner/flutter_barcode_scanner.dart'
;
import
'../Model/NamedFile.dart'
;
import
'../Model/Upload.dart'
;
import
'../Remote/RemoteData.dart'
;
import
'Constants.dart'
;
import
'SignUp.dart'
;
@immutable
@immutable
class
MultipleImages
extends
StatefulWidget
{
class
MultipleImages
extends
StatefulWidget
{
const
MultipleImages
({
super
.
key
});
const
MultipleImages
({
super
.
key
});
...
@@ -203,7 +205,9 @@ class _MultipleImages extends State<MultipleImages> {
...
@@ -203,7 +205,9 @@ class _MultipleImages extends State<MultipleImages> {
return
Scaffold
(
return
Scaffold
(
resizeToAvoidBottomInset:
false
,
resizeToAvoidBottomInset:
false
,
appBar:
AppBar
(
appBar:
AppBar
(
title:
const
Text
(
'Multiple Images'
),
title:
const
Text
(
'GRC Capture Images'
),
backgroundColor:
const
Color
.
fromARGB
(
255
,
23
,
94
,
228
),
titleTextStyle:
const
TextStyle
(
color:
Colors
.
white
,
fontSize:
22
),
actions:
[
actions:
[
IconButton
(
IconButton
(
icon:
const
Icon
(
icon:
const
Icon
(
...
@@ -221,8 +225,6 @@ class _MultipleImages extends State<MultipleImages> {
...
@@ -221,8 +225,6 @@ class _MultipleImages extends State<MultipleImages> {
},
},
),
),
],
],
backgroundColor:
const
Color
.
fromARGB
(
255
,
138
,
140
,
145
),
titleTextStyle:
const
TextStyle
(
color:
Colors
.
white
,
fontSize:
22
),
),
),
body:
SingleChildScrollView
(
body:
SingleChildScrollView
(
child:
Container
(
child:
Container
(
...
@@ -447,7 +449,7 @@ class _MultipleImages extends State<MultipleImages> {
...
@@ -447,7 +449,7 @@ class _MultipleImages extends State<MultipleImages> {
),
),
ElevatedButton
(
ElevatedButton
(
style:
ElevatedButton
.
styleFrom
(
style:
ElevatedButton
.
styleFrom
(
backgroundColor:
const
Color
.
fromARGB
(
255
,
138
,
140
,
145
),
backgroundColor:
const
Color
.
fromARGB
(
255
,
23
,
94
,
228
),
minimumSize:
const
Size
.
fromHeight
(
55
),
minimumSize:
const
Size
.
fromHeight
(
55
),
),
),
onPressed:
()
async
{
onPressed:
()
async
{
...
...
lib/Screen/MyPieChart.dart
View file @
7248b815
import
'package:flutter/cupertino.dart'
;
import
'package:flutter/cupertino.dart'
;
import
'package:photoshoot/Screen/PieChart.dart'
;
import
'package:charts_flutter/flutter.dart'
as
charts
;
import
'package:charts_flutter/flutter.dart'
as
charts
;
import
'PieChart.dart'
;
class
MyPieChart
extends
StatelessWidget
{
class
MyPieChart
extends
StatelessWidget
{
final
List
<
ChartData
>
data
;
final
List
<
ChartData
>
data
;
...
...
lib/Screen/PieChart.dart
View file @
7248b815
import
'package:flutter/cupertino.dart'
;
import
'package:flutter/cupertino.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
import
'package:photoshoot/Screen/MyPieChart.dart'
;
import
'MyPieChart.dart'
;
class
PieChart
extends
StatelessWidget
{
class
PieChart
extends
StatelessWidget
{
@override
@override
...
...
lib/Screen/SplashScreen.dart
View file @
7248b815
import
'dart:async'
;
import
'dart:async'
;
import
'package:flutter/foundation.dart'
;
import
'package:flutter/foundation.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
import
'package:photoshoot/Screen/MultipleImages.dart'
;
import
'package:photoshoot/Screen/SignUp.dart'
;
import
'package:shared_preferences/shared_preferences.dart'
;
import
'package:shared_preferences/shared_preferences.dart'
;
import
'MultipleImages.dart'
;
import
'SignUp.dart'
;
class
UserPreferences
{
class
UserPreferences
{
static
const
String
isLoggedInKey
=
'isLoggedIn'
;
static
const
String
isLoggedInKey
=
'isLoggedIn'
;
...
...
lib/main.dart
View file @
7248b815
import
'package:flutter/material.dart'
;
import
'package:flutter/material.dart'
;
import
'
package:photoshoot/
Screen/SplashScreen.dart'
;
import
'Screen/SplashScreen.dart'
;
void
main
(
)
=>
runApp
(
const
MaterialApp
(
void
main
(
)
=>
runApp
(
const
MaterialApp
(
debugShowCheckedModeBanner:
false
,
debugShowCheckedModeBanner:
false
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment