menu
sunny_core_widgets package
documentation
widgets/widget_extensions.dart
WidgetMaybeWrap
maybeWrap method
maybeWrap method
dark_mode
light_mode
maybeWrap
method
Widget
maybeWrap
(
bool
wrapIf
,
Widget
wrap
(
Widget
child
)
)
Implementation
Widget maybeWrap(bool wrapIf, Widget wrap(Widget child)) { return wrapIf ? wrap(this) : this; }
sunny_core_widgets package
documentation
widgets/widget_extensions
WidgetMaybeWrap
maybeWrap method
WidgetMaybeWrap extension on
Widget