Skip to content

Commit

Permalink
more consistent bottom sheets
Browse files Browse the repository at this point in the history
  • Loading branch information
user5522 committed Dec 31, 2024
1 parent bbfc254 commit 59d5ad1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions lib/components/settings/timetable_features.dart
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ class TimetableFeaturesOptions extends HookConsumerWidget {
showDragHandle: true,
enableDrag: true,
isDismissible: true,
isScrollControlled: true,
context: context,
builder: (context) {
return Wrap(
Expand Down
1 change: 1 addition & 0 deletions lib/components/subject_management/subject_configs/day.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ class DayConfig extends StatelessWidget {
showDragHandle: true,
enableDrag: true,
isDismissible: true,
isScrollControlled: true,
context: context,
builder: (context) {
return Wrap(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ class RotationWeekConfig extends StatelessWidget {
showDragHandle: true,
enableDrag: true,
isDismissible: true,
isScrollControlled: true,
context: context,
builder: (context) {
return Wrap(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ class TimetableConfig extends StatelessWidget {
showDragHandle: true,
enableDrag: true,
isDismissible: true,
isScrollControlled: true,
context: context,
builder: (context) {
return Wrap(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class SubjectDataBottomSheet extends StatelessWidget {
primary: false,
children: children,
),
const SizedBox(height: 10),
const SizedBox(height: 30),
],
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ class SubjectBuilder extends ConsumerWidget {
showDragHandle: true,
enableDrag: true,
isDismissible: true,
context: context,
isScrollControlled: true,
context: context,
builder: (context) {
return Wrap(
children: [
Expand Down

0 comments on commit 59d5ad1

Please sign in to comment.