-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bug fixed #101
base: master
Are you sure you want to change the base?
bug fixed #101
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
C:/Users/dhruv/fvm/versions/2.8.0 | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this file should not be added to repo. It is your local settings. |
||
"flutterSdkVersion": "2.8.0", | ||
"flavors": {} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/sh | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this file should not be added to repo. It is your local settings. |
||
# This is a generated file; do not edit or check into version control. | ||
export "FLUTTER_ROOT=C:\src\flutter\flutter" | ||
export "FLUTTER_APPLICATION_PATH=C:\Users\dhruv\OneDrive\Desktop\flutter_date_pickers\example" | ||
export "COCOAPODS_PARALLEL_CODE_SIGN=true" | ||
export "FLUTTER_TARGET=lib\main.dart" | ||
export "FLUTTER_BUILD_DIR=build" | ||
export "FLUTTER_BUILD_NAME=1.0.0" | ||
export "FLUTTER_BUILD_NUMBER=1" | ||
export "DART_OBFUSCATION=false" | ||
export "TRACK_WIDGET_CREATION=true" | ||
export "TREE_SHAKE_ICONS=false" | ||
export "PACKAGE_CONFIG=.dart_tool/package_config.json" |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,7 +42,7 @@ packages: | |
name: collection | ||
url: "https://pub.dartlang.org" | ||
source: hosted | ||
version: "1.16.0" | ||
version: "1.15.0" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why it is necessary to decrease package version? |
||
cupertino_icons: | ||
dependency: "direct main" | ||
description: | ||
|
@@ -56,7 +56,7 @@ packages: | |
name: fake_async | ||
url: "https://pub.dartlang.org" | ||
source: hosted | ||
version: "1.3.0" | ||
version: "1.2.0" | ||
flutter: | ||
dependency: "direct main" | ||
description: flutter | ||
|
@@ -68,7 +68,7 @@ packages: | |
path: ".." | ||
relative: true | ||
source: path | ||
version: "0.3.0" | ||
version: "0.4.0" | ||
flutter_localizations: | ||
dependency: "direct main" | ||
description: flutter | ||
|
@@ -100,13 +100,6 @@ packages: | |
url: "https://pub.dartlang.org" | ||
source: hosted | ||
version: "0.12.11" | ||
material_color_utilities: | ||
dependency: transitive | ||
description: | ||
name: material_color_utilities | ||
url: "https://pub.dartlang.org" | ||
source: hosted | ||
version: "0.1.4" | ||
meta: | ||
dependency: transitive | ||
description: | ||
|
@@ -120,7 +113,7 @@ packages: | |
name: path | ||
url: "https://pub.dartlang.org" | ||
source: hosted | ||
version: "1.8.1" | ||
version: "1.8.0" | ||
sky_engine: | ||
dependency: transitive | ||
description: flutter | ||
|
@@ -132,7 +125,7 @@ packages: | |
name: source_span | ||
url: "https://pub.dartlang.org" | ||
source: hosted | ||
version: "1.8.2" | ||
version: "1.8.1" | ||
stack_trace: | ||
dependency: transitive | ||
description: | ||
|
@@ -167,14 +160,21 @@ packages: | |
name: test_api | ||
url: "https://pub.dartlang.org" | ||
source: hosted | ||
version: "0.4.9" | ||
version: "0.4.3" | ||
typed_data: | ||
dependency: transitive | ||
description: | ||
name: typed_data | ||
url: "https://pub.dartlang.org" | ||
source: hosted | ||
version: "1.3.0" | ||
vector_math: | ||
dependency: transitive | ||
description: | ||
name: vector_math | ||
url: "https://pub.dartlang.org" | ||
source: hosted | ||
version: "2.1.2" | ||
version: "2.1.1" | ||
sdks: | ||
dart: ">=2.17.0-0 <3.0.0" | ||
dart: ">=2.14.0 <3.0.0" | ||
flutter: ">=1.17.0" |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -179,6 +179,7 @@ class _DayBasedChangeablePickerState<T> | |
padding: widget.datePickerLayoutSettings.contentPadding, | ||
child: _buildMonthNavigationRow()), | ||
), | ||
SizedBox( height: 40, width: double.infinity,), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why height is 40? |
||
Expanded( | ||
child: Semantics( | ||
sortKey: MonthPickerSortKey.calendar, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ packages: | |
name: async | ||
url: "https://pub.dartlang.org" | ||
source: hosted | ||
version: "2.8.1" | ||
version: "2.8.2" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why it is necessary to change package versions here? |
||
boolean_selector: | ||
dependency: transitive | ||
description: | ||
|
@@ -21,7 +21,7 @@ packages: | |
name: characters | ||
url: "https://pub.dartlang.org" | ||
source: hosted | ||
version: "1.1.0" | ||
version: "1.2.0" | ||
charcode: | ||
dependency: transitive | ||
description: | ||
|
@@ -78,7 +78,7 @@ packages: | |
name: matcher | ||
url: "https://pub.dartlang.org" | ||
source: hosted | ||
version: "0.12.10" | ||
version: "0.12.11" | ||
meta: | ||
dependency: transitive | ||
description: | ||
|
@@ -139,7 +139,7 @@ packages: | |
name: test_api | ||
url: "https://pub.dartlang.org" | ||
source: hosted | ||
version: "0.4.2" | ||
version: "0.4.3" | ||
typed_data: | ||
dependency: transitive | ||
description: | ||
|
@@ -153,6 +153,6 @@ packages: | |
name: vector_math | ||
url: "https://pub.dartlang.org" | ||
source: hosted | ||
version: "2.1.0" | ||
version: "2.1.1" | ||
sdks: | ||
dart: ">=2.12.0 <3.0.0" | ||
dart: ">=2.14.0 <3.0.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this file should not be added to repo. It is your local settings.