Skip to content

Commit

Permalink
Reduced whitespace to the left of ylabel (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreped authored Sep 23, 2024
1 parent a0113f2 commit 53c0eee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/tabs/visualization.dart
Original file line number Diff line number Diff line change
Expand Up @@ -319,12 +319,12 @@ class _VisualizationTabState extends State<VisualizationTab> {

return Scaffold(
body: Padding(
padding: const EdgeInsets.all(16.0),
padding: const EdgeInsets.all(0.0),
child: SingleChildScrollView(
child: Column(
children: [
_buildTableDropdown(theme),
const SizedBox(height: 16.0),
const SizedBox(height: 8.0),
if (_selectedTable == 'Exercise') _buildExerciseDropdown(theme),
if (_selectedTable == 'Fitness') _buildDataTypeDropdown(theme),
const SizedBox(height: 16.0),
Expand Down Expand Up @@ -749,7 +749,7 @@ class _VisualizationTabState extends State<VisualizationTab> {
}

Widget _leftTitleWidgets(double value, TitleMeta meta, Color textColor) {
const double reservedSize = 50.0;
const double reservedSize = 30.0;

return SideTitleWidget(
axisSide: meta.axisSide,
Expand Down

0 comments on commit 53c0eee

Please sign in to comment.