Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PROG2900
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sara Savanovic Djordjevic
PROG2900
Commits
b780309d
Commit
b780309d
authored
11 months ago
by
Sara Savanovic Djordjevic
Browse files
Options
Downloads
Patches
Plain Diff
add: placeholder infotext under chart
parent
5df3ade6
No related branches found
No related tags found
Loading
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/lib/widgets/bar_graph/bar_data.dart
+1
-1
1 addition, 1 deletion
app/lib/widgets/bar_graph/bar_data.dart
app/lib/widgets/main_layout.dart
+30
-2
30 additions, 2 deletions
app/lib/widgets/main_layout.dart
with
31 additions
and
3 deletions
app/lib/widgets/bar_graph/bar_data.dart
+
1
−
1
View file @
b780309d
...
...
@@ -155,8 +155,8 @@ class _BarDataState extends State<BarData> {
mainAxisAlignment:
MainAxisAlignment
.
spaceEvenly
,
children:
[
_buildLegendItem
(
Colors
.
white60
,
"Snow"
),
_buildLegendItem
(
const
Color
(
0xFF13dbff
),
"Slush ice"
),
_buildLegendItem
(
const
Color
(
0xFF000085
),
"Black ice"
),
_buildLegendItem
(
const
Color
(
0xFF13dbff
),
"Slush ice"
),
],
),
),
...
...
This diff is collapsed.
Click to expand it.
app/lib/widgets/main_layout.dart
+
30
−
2
View file @
b780309d
...
...
@@ -264,9 +264,37 @@ class _MapContainerWidgetState extends State<MapContainerWidget> {
),
SizedBox(
width: screenWidth * boxWidth * 1.2,
height: screenWidth * boxHeight * 1.5,
child: const StatCharts(),
)
),
const SizedBox(height: contPadding*2),
SizedBox(
width: screenWidth * boxWidth * 1.2,
child: Padding(
padding: const EdgeInsets.only(top: 20, left: 30),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
children: [
const Icon(
Icons.info,
color: Colors.white54,
),
const SizedBox(width: 10),
Expanded(
child: Text(
'
For
every
x
of
y
,
there
has
to
be
z
cm
of
'
'
q
for
every
kg
of
applied
weight
to
ensure
?
',
style: regTextStyle,
),
),
],
),
],
),
),
),
const SizedBox(height: contPadding*2),
],
),
],
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment