Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
org.benoitharrault.scrobbles
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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
android
org.benoitharrault.scrobbles
Merge requests
!58
Resolve "Avoid print calls in production code"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Resolve "Avoid print calls in production code"
62-avoid-print-calls-in-production-code
into
master
Overview
0
Commits
1
Pipelines
3
Changes
6
Merged
Resolve "Avoid print calls in production code"
Benoît Harrault
requested to merge
62-avoid-print-calls-in-production-code
into
master
Feb 22, 2024
Overview
0
Commits
1
Pipelines
3
Changes
6
Closes
#62 (closed)
0
0
Merge request reports
Viewing commit
3b5067fa
Show latest version
6 files
+
19
−
15
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
3b5067fa
Avoid print calls in production code
· 3b5067fa
Benoît Harrault
authored
Feb 28, 2024
lib/ui/widgets/abstracts/custom_chart.dart
+
1
−
2
View file @ 3dfc4694
Edit in single-file editor
Open in Web IDE
Show full file
@@ -216,8 +216,7 @@ class CustomChart extends StatelessWidget {
@@ -216,8 +216,7 @@ class CustomChart extends StatelessWidget {
}
}
Widget
getVerticalTitlesWidgetWithValue
(
double
value
,
TitleMeta
meta
)
{
Widget
getVerticalTitlesWidgetWithValue
(
double
value
,
TitleMeta
meta
)
{
String
suffix
=
String
suffix
=
verticalAxisTitleSuffix
!=
''
?
'
$verticalAxisTitleSuffix
'
:
''
;
verticalAxisTitleSuffix
!=
''
?
'
$verticalAxisTitleSuffix
'
:
''
;
return
SideTitleWidget
(
return
SideTitleWidget
(
axisSide:
meta
.
axisSide
,
axisSide:
meta
.
axisSide
,
Loading