Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
StoreMonitor
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
StoreMonitor
Commits
d1796431
Commit
d1796431
authored
Oct 31, 2023
by
Ramesh Babu Puvvadi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added weekly report
parent
eaeaa7c6
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
94 additions
and
7 deletions
+94
-7
weekly_report.png
assets/images/weekly_report.png
+0
-0
EmployeeStatus.dart
lib/Screens/EmployeeStatus.dart
+2
-2
Home.dart
lib/Screens/Home.dart
+89
-0
IssueVideos.dart
lib/Screens/IssueVideos.dart
+2
-5
pubspec.yaml
pubspec.yaml
+1
-0
No files found.
assets/images/weekly_report.png
0 → 100644
View file @
d1796431
25.5 KB
lib/Screens/EmployeeStatus.dart
View file @
d1796431
...
...
@@ -191,9 +191,9 @@ class employeeStatus extends State<EmployeeStatus> {
height:
15
,
width:
1
,
),
Row
(
const
Row
(
mainAxisAlignment:
MainAxisAlignment
.
start
,
children:
const
[
children:
[
Text
(
'Employees InStore Status'
,
textAlign:
TextAlign
.
left
,
style:
Constants
.
headerfontStyle
),
...
...
lib/Screens/Home.dart
View file @
d1796431
...
...
@@ -629,6 +629,95 @@ class _Home extends State<Home> {
),
],
),
const
SizedBox
(
height:
10
,
width:
1
,
),
Row
(
mainAxisAlignment:
MainAxisAlignment
.
start
,
children:
[
Expanded
(
child:
Container
(
margin:
const
EdgeInsets
.
only
(
left:
0
,
top:
0
,
right:
0
,
bottom:
0
),
width:
MediaQuery
.
of
(
context
).
size
.
width
*
0.44
,
child:
GestureDetector
(
onTap:
()
{
Navigator
.
push
(
context
,
MaterialPageRoute
(
builder:
(
context
)
=>
UserRegistration
(
message:
selectedDropdownItem
.
toString
())),
);
},
child:
Container
(
width:
MediaQuery
.
of
(
context
).
size
.
width
*
0.44
,
height:
MediaQuery
.
of
(
context
).
size
.
width
*
0.22
,
padding:
const
EdgeInsets
.
all
(
5
),
decoration:
BoxDecoration
(
gradient:
const
LinearGradient
(
begin:
Alignment
.
bottomLeft
,
end:
Alignment
.
bottomRight
,
colors:
[
Color
(
0xFF6d6027
),
//Color(0xFFC2185B),
Color
(
0xFFd3cbb8
),
],
),
borderRadius:
BorderRadius
.
circular
(
7
),
),
child:
Row
(
children:
[
Image
.
asset
(
'assets/images/weekly_report.png'
,
// width: 145,
// height: 160,
),
],
),
),
),
),
),
const
VerticalDivider
(
width:
10.0
),
Expanded
(
child:
Container
(
margin:
const
EdgeInsets
.
only
(
left:
0
,
top:
0
,
right:
0
,
bottom:
0
),
width:
MediaQuery
.
of
(
context
).
size
.
width
*
0.44
,
child:
GestureDetector
(
onTap:
()
{
Navigator
.
push
(
context
,
MaterialPageRoute
(
builder:
(
context
)
=>
UserRegistration
(
message:
selectedDropdownItem
.
toString
())),
);
},
child:
Container
(
width:
MediaQuery
.
of
(
context
).
size
.
width
*
0.44
,
height:
MediaQuery
.
of
(
context
).
size
.
width
*
0.22
,
padding:
const
EdgeInsets
.
all
(
5
),
decoration:
BoxDecoration
(
gradient:
const
LinearGradient
(
begin:
Alignment
.
bottomLeft
,
end:
Alignment
.
bottomRight
,
colors:
[
// Color(0xFF6a706f),
// //Color(0xFFC2185B),
// Color(0xFF91b3b1),
],
),
borderRadius:
BorderRadius
.
circular
(
7
),
),
),
),
),
),
],
),
],
),
),
...
...
lib/Screens/IssueVideos.dart
View file @
d1796431
...
...
@@ -72,11 +72,8 @@ class _IssueVideos extends State<IssueVideos> {
builder:
(
context
)
{
return
const
Center
(
child:
CircularProgressIndicator
(
color:
Color
.
fromARGB
(
255
,
29
,
20
,
34
)
)
);
}
);
color:
Color
.
fromARGB
(
255
,
29
,
20
,
34
)));
});
//Response data;
final
respon
=
await
RemoteData
().
getIssueVideos
(
name
);
Map
<
String
,
dynamic
>
responseMap
=
jsonDecode
(
respon
);
...
...
pubspec.yaml
View file @
d1796431
...
...
@@ -103,6 +103,7 @@ flutter:
#- assets/images/green.png
-
assets/images/red.png
-
assets/images/videos.png
-
assets/images/weekly_report.png
fonts
:
-
family
:
Poppins
...
...
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