|
|
@ -6,6 +6,11 @@ import '../../../../../translations.dart'; |
|
|
|
import '../../../../models/documents/style.dart'; |
|
|
|
import '../../../../models/documents/style.dart'; |
|
|
|
import 'color_button.dart' show hexToColor; |
|
|
|
import 'color_button.dart' show hexToColor; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
enum _PickerType { |
|
|
|
|
|
|
|
material, |
|
|
|
|
|
|
|
color, |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
class ColorPickerDialog extends StatefulWidget { |
|
|
|
class ColorPickerDialog extends StatefulWidget { |
|
|
|
const ColorPickerDialog({ |
|
|
|
const ColorPickerDialog({ |
|
|
|
required this.isBackground, |
|
|
|
required this.isBackground, |
|
|
@ -17,7 +22,7 @@ class ColorPickerDialog extends StatefulWidget { |
|
|
|
final bool isBackground; |
|
|
|
final bool isBackground; |
|
|
|
|
|
|
|
|
|
|
|
final bool isToggledColor; |
|
|
|
final bool isToggledColor; |
|
|
|
final Function(BuildContext context, Color color) onRequestChangeColor; |
|
|
|
final Function(BuildContext context, Color? color) onRequestChangeColor; |
|
|
|
final Style selectionStyle; |
|
|
|
final Style selectionStyle; |
|
|
|
|
|
|
|
|
|
|
|
@override |
|
|
|
@override |
|
|
@ -25,7 +30,7 @@ class ColorPickerDialog extends StatefulWidget { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
class ColorPickerDialogState extends State<ColorPickerDialog> { |
|
|
|
class ColorPickerDialogState extends State<ColorPickerDialog> { |
|
|
|
var pickerType = 'material'; |
|
|
|
var pickerType = _PickerType.material; |
|
|
|
var selectedColor = Colors.black; |
|
|
|
var selectedColor = Colors.black; |
|
|
|
|
|
|
|
|
|
|
|
late final TextEditingController hexController; |
|
|
|
late final TextEditingController hexController; |
|
|
@ -61,24 +66,33 @@ class ColorPickerDialogState extends State<ColorPickerDialog> { |
|
|
|
Row( |
|
|
|
Row( |
|
|
|
children: [ |
|
|
|
children: [ |
|
|
|
TextButton( |
|
|
|
TextButton( |
|
|
|
onPressed: () { |
|
|
|
onPressed: () { |
|
|
|
setState(() { |
|
|
|
setState(() { |
|
|
|
pickerType = 'material'; |
|
|
|
pickerType = _PickerType.material; |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
child: Text(context.loc.material)), |
|
|
|
child: Text(context.loc.material), |
|
|
|
|
|
|
|
), |
|
|
|
TextButton( |
|
|
|
TextButton( |
|
|
|
onPressed: () { |
|
|
|
onPressed: () { |
|
|
|
setState(() { |
|
|
|
setState(() { |
|
|
|
pickerType = 'color'; |
|
|
|
pickerType = _PickerType.color; |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
child: Text(context.loc.color)), |
|
|
|
child: Text(context.loc.color), |
|
|
|
|
|
|
|
), |
|
|
|
|
|
|
|
TextButton( |
|
|
|
|
|
|
|
onPressed: () { |
|
|
|
|
|
|
|
widget.onRequestChangeColor(context, null); |
|
|
|
|
|
|
|
Navigator.of(context).pop(); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
child: Text(context.loc.clear), |
|
|
|
|
|
|
|
), |
|
|
|
], |
|
|
|
], |
|
|
|
), |
|
|
|
), |
|
|
|
Column( |
|
|
|
Column( |
|
|
|
children: [ |
|
|
|
children: [ |
|
|
|
if (pickerType == 'material') |
|
|
|
if (pickerType == _PickerType.material) |
|
|
|
MaterialPicker( |
|
|
|
MaterialPicker( |
|
|
|
pickerColor: selectedColor, |
|
|
|
pickerColor: selectedColor, |
|
|
|
onColorChanged: (color) { |
|
|
|
onColorChanged: (color) { |
|
|
@ -86,7 +100,7 @@ class ColorPickerDialogState extends State<ColorPickerDialog> { |
|
|
|
Navigator.of(context).pop(); |
|
|
|
Navigator.of(context).pop(); |
|
|
|
}, |
|
|
|
}, |
|
|
|
), |
|
|
|
), |
|
|
|
if (pickerType == 'color') |
|
|
|
if (pickerType == _PickerType.color) |
|
|
|
ColorPicker( |
|
|
|
ColorPicker( |
|
|
|
pickerColor: selectedColor, |
|
|
|
pickerColor: selectedColor, |
|
|
|
onColorChanged: (color) { |
|
|
|
onColorChanged: (color) { |
|
|
|