-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix deprecations * Increase opacity to make letters above the sliders more readable * Improve color of app bar and button (especially in dark mode) * Make title of sliders look the same everywhere and move to own class * Create folder structure pickers for picker pages and widgets/ for smaller widgets * Simplify code * Make text and button height aligned * Make SliderTitle Text widgets vertically aligned * Improve opacity of SliderTitle's left text * Rename methods * Improve ui (padding, remove underline in portrait mode) * Auto-update files * Auto-format example/pubspec.yaml * Update version and changelog * Update flutter_lints * Improve UI * Improve UI * Improve UI * User BorderRadius.circular constructor * Make padding on SliderTitle symmetric to better support RTL layout * Use SizedBox for whitespace * Use Container instead of Padding plus SizedBox and DecoratedBox * Use BorderRadius.circular constructor * Refactor SliderTitle * Improve UI * Add alignment and margin to Row instead of each of its children
- Loading branch information
Showing
21 changed files
with
129 additions
and
166 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
library flutter_hsvcolor_picker; | ||
|
||
export 'src/alpha_picker.dart'; | ||
export 'src/widgets/alpha_picker.dart'; | ||
export 'src/color_picker.dart'; | ||
export 'src/hex_picker.dart'; | ||
export 'src/hsv_picker.dart'; | ||
export 'src/palette_hue_picker.dart'; | ||
export 'src/palette_picker.dart'; | ||
export 'src/palette_saturation_picker.dart'; | ||
export 'src/palette_value_picker.dart'; | ||
export 'src/rgb_picker.dart'; | ||
export 'src/slider_picker.dart'; | ||
export 'src/swatches_picker.dart'; | ||
export 'src/wheel_picker.dart'; | ||
export 'src/widgets/hex_picker.dart'; | ||
export 'src/pickers/hsv_picker.dart'; | ||
export 'src/pickers/palette_hue_picker.dart'; | ||
export 'src/widgets/palette_picker.dart'; | ||
export 'src/pickers/palette_saturation_picker.dart'; | ||
export 'src/pickers/palette_value_picker.dart'; | ||
export 'src/pickers/rgb_picker.dart'; | ||
export 'src/widgets/slider_picker.dart'; | ||
export 'src/pickers/swatches_picker.dart'; | ||
export 'src/pickers/wheel_picker.dart'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
lib/src/palette_hue_picker.dart → lib/src/pickers/palette_hue_picker.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
lib/src/palette_saturation_picker.dart → ...rc/pickers/palette_saturation_picker.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
lib/src/palette_value_picker.dart → lib/src/pickers/palette_value_picker.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.