Skip to content

Commit

Permalink
fix: bottom sheet heights
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasn committed Jul 16, 2023
1 parent 742fe53 commit 9a52596
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed:
- Sort categories
- Bottom sheet heights

## [0.8.392] - 2023-06-24
### Changed:
Expand Down
2 changes: 1 addition & 1 deletion lib/widgets/categories/select_color_field.dart
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class _SelectColorFieldState extends State<SelectColorField> {
builder: (BuildContext _) {
return Container(
constraints: BoxConstraints(
maxHeight: MediaQuery.of(context).size.height * 0.8,
maxHeight: MediaQuery.of(context).size.height * 0.7,
),
padding: const EdgeInsets.symmetric(
horizontal: 10,
Expand Down
2 changes: 1 addition & 1 deletion lib/widgets/habits/habit_category.dart
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class SelectCategoryWidget extends StatelessWidget {
value: BlocProvider.of<HabitSettingsCubit>(context),
child: Container(
constraints: BoxConstraints(
maxHeight: MediaQuery.of(context).size.height * 0.8,
maxHeight: MediaQuery.of(context).size.height * 0.7,
),
padding: const EdgeInsets.symmetric(
horizontal: 10,
Expand Down
2 changes: 1 addition & 1 deletion lib/widgets/habits/habit_dashboard.dart
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class SelectDashboardWidget extends StatelessWidget {
value: BlocProvider.of<HabitSettingsCubit>(context),
child: Container(
constraints: BoxConstraints(
maxHeight: MediaQuery.of(context).size.height * 0.8,
maxHeight: MediaQuery.of(context).size.height * 0.7,
),
padding: const EdgeInsets.symmetric(
horizontal: 10,
Expand Down
2 changes: 1 addition & 1 deletion lib/widgets/settings/dashboards/dashboard_category.dart
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class SelectDashboardCategoryWidget extends StatelessWidget {
builder: (BuildContext _) {
return Container(
constraints: BoxConstraints(
maxHeight: MediaQuery.of(context).size.height * 0.8,
maxHeight: MediaQuery.of(context).size.height * 0.7,
),
padding: const EdgeInsets.symmetric(
horizontal: 10,
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: lotti
description: Achieve your goals and keep your data private with Lotti.
publish_to: 'none'
version: 0.9.394+2288
version: 0.9.394+2289

msix_config:
display_name: LottiApp
Expand Down

0 comments on commit 9a52596

Please sign in to comment.