|
|
@ -11,7 +11,8 @@ import '../base_toolbar.dart'; |
|
|
|
class QuillToolbarFontFamilyButton extends StatefulWidget { |
|
|
|
class QuillToolbarFontFamilyButton extends StatefulWidget { |
|
|
|
QuillToolbarFontFamilyButton({ |
|
|
|
QuillToolbarFontFamilyButton({ |
|
|
|
required this.controller, |
|
|
|
required this.controller, |
|
|
|
required this.defaultDisplayText, |
|
|
|
@Deprecated('Please use the default display text from the options') |
|
|
|
|
|
|
|
this.defaultDisplayText, |
|
|
|
this.options = const QuillToolbarFontFamilyButtonOptions(), |
|
|
|
this.options = const QuillToolbarFontFamilyButtonOptions(), |
|
|
|
super.key, |
|
|
|
super.key, |
|
|
|
}) : assert(options.rawItemsMap?.isNotEmpty ?? (true)), |
|
|
|
}) : assert(options.rawItemsMap?.isNotEmpty ?? (true)), |
|
|
@ -21,8 +22,7 @@ class QuillToolbarFontFamilyButton extends StatefulWidget { |
|
|
|
|
|
|
|
|
|
|
|
final QuillToolbarFontFamilyButtonOptions options; |
|
|
|
final QuillToolbarFontFamilyButtonOptions options; |
|
|
|
|
|
|
|
|
|
|
|
@Deprecated('Please use the default display text from the options') |
|
|
|
final String? defaultDisplayText; |
|
|
|
final String defaultDisplayText; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Since we can't get the state from the instace of the widget for comparing |
|
|
|
/// Since we can't get the state from the instace of the widget for comparing |
|
|
|
/// in [didUpdateWidget] then we will have to store reference here |
|
|
|
/// in [didUpdateWidget] then we will have to store reference here |
|
|
@ -50,10 +50,15 @@ class QuillToolbarFontFamilyButtonState |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void _initState() { |
|
|
|
void _initState() { |
|
|
|
_currentValue = _defaultDisplayText; |
|
|
|
|
|
|
|
// controller.addListener(_didChangeEditingValue); |
|
|
|
// controller.addListener(_didChangeEditingValue); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
|
|
|
void didChangeDependencies() { |
|
|
|
|
|
|
|
super.didChangeDependencies(); |
|
|
|
|
|
|
|
_currentValue = _defaultDisplayText; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// @override |
|
|
|
// @override |
|
|
|
// void dispose() { |
|
|
|
// void dispose() { |
|
|
|
// controller.removeListener(_didChangeEditingValue); |
|
|
|
// controller.removeListener(_didChangeEditingValue); |
|
|
@ -63,8 +68,8 @@ class QuillToolbarFontFamilyButtonState |
|
|
|
String get _defaultDisplayText { |
|
|
|
String get _defaultDisplayText { |
|
|
|
return options.initialValue ?? |
|
|
|
return options.initialValue ?? |
|
|
|
widget.options.defaultDisplayText ?? |
|
|
|
widget.options.defaultDisplayText ?? |
|
|
|
// ignore: deprecated_member_use_from_same_package |
|
|
|
widget.defaultDisplayText ?? |
|
|
|
widget.defaultDisplayText; |
|
|
|
context.loc.font; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// @override |
|
|
|
// @override |
|
|
@ -169,46 +174,40 @@ class QuillToolbarFontFamilyButtonState |
|
|
|
), |
|
|
|
), |
|
|
|
); |
|
|
|
); |
|
|
|
} |
|
|
|
} |
|
|
|
return ConstrainedBox( |
|
|
|
return UtilityWidgets.maybeWidget( |
|
|
|
constraints: BoxConstraints.tightFor( |
|
|
|
enabled: tooltip.isNotEmpty || options.overrideTooltipByFontFamily, |
|
|
|
height: iconSize * 1.81, |
|
|
|
wrapper: (child) { |
|
|
|
width: options.width, |
|
|
|
var effectiveTooltip = tooltip; |
|
|
|
), |
|
|
|
if (options.overrideTooltipByFontFamily) { |
|
|
|
child: UtilityWidgets.maybeWidget( |
|
|
|
effectiveTooltip = effectiveTooltip.isNotEmpty |
|
|
|
enabled: tooltip.isNotEmpty || options.overrideTooltipByFontFamily, |
|
|
|
? '$effectiveTooltip: $_currentValue' |
|
|
|
wrapper: (child) { |
|
|
|
: '${context.loc.font}: $_currentValue'; |
|
|
|
var effectiveTooltip = tooltip; |
|
|
|
} |
|
|
|
if (options.overrideTooltipByFontFamily) { |
|
|
|
return Tooltip(message: effectiveTooltip, child: child); |
|
|
|
effectiveTooltip = effectiveTooltip.isNotEmpty |
|
|
|
}, |
|
|
|
? '$effectiveTooltip: $_currentValue' |
|
|
|
child: Builder( |
|
|
|
: '${context.loc.font}: $_currentValue'; |
|
|
|
builder: (context) { |
|
|
|
} |
|
|
|
final isMaterial3 = Theme.of(context).useMaterial3; |
|
|
|
return Tooltip(message: effectiveTooltip, child: child); |
|
|
|
if (!isMaterial3) { |
|
|
|
}, |
|
|
|
return RawMaterialButton( |
|
|
|
child: Builder( |
|
|
|
|
|
|
|
builder: (context) { |
|
|
|
|
|
|
|
final isMaterial3 = Theme.of(context).useMaterial3; |
|
|
|
|
|
|
|
if (!isMaterial3) { |
|
|
|
|
|
|
|
return RawMaterialButton( |
|
|
|
|
|
|
|
onPressed: _onPressed, |
|
|
|
|
|
|
|
child: _buildContent(context), |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return QuillToolbarIconButton( |
|
|
|
|
|
|
|
isSelected: false, |
|
|
|
|
|
|
|
iconTheme: iconTheme?.copyWith( |
|
|
|
|
|
|
|
iconButtonSelectedData: const IconButtonData( |
|
|
|
|
|
|
|
visualDensity: VisualDensity.compact, |
|
|
|
|
|
|
|
), |
|
|
|
|
|
|
|
iconButtonUnselectedData: const IconButtonData( |
|
|
|
|
|
|
|
visualDensity: VisualDensity.compact, |
|
|
|
|
|
|
|
), |
|
|
|
|
|
|
|
), |
|
|
|
|
|
|
|
onPressed: _onPressed, |
|
|
|
onPressed: _onPressed, |
|
|
|
icon: _buildContent(context), |
|
|
|
child: _buildContent(context), |
|
|
|
); |
|
|
|
); |
|
|
|
}, |
|
|
|
} |
|
|
|
), |
|
|
|
return QuillToolbarIconButton( |
|
|
|
|
|
|
|
isSelected: false, |
|
|
|
|
|
|
|
iconTheme: iconTheme?.copyWith( |
|
|
|
|
|
|
|
iconButtonSelectedData: const IconButtonData( |
|
|
|
|
|
|
|
visualDensity: VisualDensity.compact, |
|
|
|
|
|
|
|
), |
|
|
|
|
|
|
|
iconButtonUnselectedData: const IconButtonData( |
|
|
|
|
|
|
|
visualDensity: VisualDensity.compact, |
|
|
|
|
|
|
|
), |
|
|
|
|
|
|
|
), |
|
|
|
|
|
|
|
onPressed: _onPressed, |
|
|
|
|
|
|
|
icon: _buildContent(context), |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
}, |
|
|
|
), |
|
|
|
), |
|
|
|
); |
|
|
|
); |
|
|
|
} |
|
|
|
} |
|
|
|