Skip to content

Commit

Permalink
fix: add pubspec.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
M-amir-M committed May 14, 2023
1 parent af3f28e commit b3a8a62
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -73,3 +73,4 @@ build/
!**/ios/**/default.pbxuser
!**/ios/**/default.perspectivev3

pubspec.lock
1 change: 1 addition & 0 deletions example/.gitignore
Expand Up @@ -36,3 +36,4 @@ lib/generated_plugin_registrant.dart
# Exceptions to above rules.
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages

pubspec.lock
2 changes: 1 addition & 1 deletion lib/src/ptime_picker.dart
Expand Up @@ -1964,7 +1964,7 @@ class _TimePickerDialogState extends State<_TimePickerDialog> {
theme.colorScheme.brightness == Brightness.dark ? 1.0 : 0.6,
),
onPressed: _handleEntryModeToggle,
icon: _entryMode == PTimePickerEntryMode.dialOnly || _entryMode == PTimePickerEntryMode.dialOnly ? Icon(null) :
icon: _entryMode == PTimePickerEntryMode.dialOnly || _entryMode == PTimePickerEntryMode.dialOnly ? const Icon(null) :
Icon(_entryMode == PTimePickerEntryMode.dial
? Icons.keyboard
: Icons.access_time),
Expand Down

0 comments on commit b3a8a62

Please sign in to comment.