Skip to content

Commit

Permalink
fix" meteor
Browse files Browse the repository at this point in the history
  • Loading branch information
whes1015 committed Sep 5, 2024
1 parent d6a351e commit 8f920c1
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions lib/app/page/map/rain/rain.dart
Original file line number Diff line number Diff line change
Expand Up @@ -487,11 +487,11 @@ class _RainMapState extends State<RainMap> {
),
if (_selectedStationId != null)
DraggableScrollableSheet(
initialChildSize: 0.7,
initialChildSize: 0.3,
minChildSize: 0.1,
maxChildSize: 1,
snap: true,
snapSizes: const [0.1, 0.7, 1],
snapSizes: const [0.1, 0.3, 0.7, 1],
builder: (BuildContext context, ScrollController scrollController) {
return Container(
decoration: BoxDecoration(
Expand Down
4 changes: 2 additions & 2 deletions lib/app/page/map/weather/humidity.dart
Original file line number Diff line number Diff line change
Expand Up @@ -373,11 +373,11 @@ class _HumidityMapState extends State<HumidityMap> {
),
if (_selectedStationId != null)
DraggableScrollableSheet(
initialChildSize: 0.7,
initialChildSize: 0.3,
minChildSize: 0.1,
maxChildSize: 1,
snap: true,
snapSizes: const [0.1, 0.7, 1],
snapSizes: const [0.1, 0.3, 0.7, 1],
builder: (BuildContext context, ScrollController scrollController) {
return Container(
decoration: BoxDecoration(
Expand Down
4 changes: 2 additions & 2 deletions lib/app/page/map/weather/pressure.dart
Original file line number Diff line number Diff line change
Expand Up @@ -377,11 +377,11 @@ class _PressureMapState extends State<PressureMap> {
),
if (_selectedStationId != null)
DraggableScrollableSheet(
initialChildSize: 0.7,
initialChildSize: 0.3,
minChildSize: 0.1,
maxChildSize: 1,
snap: true,
snapSizes: const [0.1, 0.7, 1],
snapSizes: const [0.1, 0.3, 0.7, 1],
builder: (BuildContext context, ScrollController scrollController) {
return Container(
decoration: BoxDecoration(
Expand Down
4 changes: 2 additions & 2 deletions lib/app/page/map/weather/temperature.dart
Original file line number Diff line number Diff line change
Expand Up @@ -388,11 +388,11 @@ class _TemperatureMapState extends State<TemperatureMap> {
),
if (_selectedStationId != null)
DraggableScrollableSheet(
initialChildSize: 0.7,
initialChildSize: 0.3,
minChildSize: 0.1,
maxChildSize: 1,
snap: true,
snapSizes: const [0.1, 0.7, 1],
snapSizes: const [0.1, 0.3, 0.7, 1],
builder: (BuildContext context, ScrollController scrollController) {
return Container(
decoration: BoxDecoration(
Expand Down
4 changes: 2 additions & 2 deletions lib/app/page/map/weather/wind.dart
Original file line number Diff line number Diff line change
Expand Up @@ -404,11 +404,11 @@ class _WindMapState extends State<WindMap> {
),
if (_selectedStationId != null)
DraggableScrollableSheet(
initialChildSize: 0.7,
initialChildSize: 0.3,
minChildSize: 0.1,
maxChildSize: 1,
snap: true,
snapSizes: const [0.1, 0.7, 1],
snapSizes: const [0.1, 0.3, 0.7, 1],
builder: (BuildContext context, ScrollController scrollController) {
return Container(
decoration: BoxDecoration(
Expand Down

0 comments on commit 8f920c1

Please sign in to comment.