53 lines
1.1 KiB
Dart
53 lines
1.1 KiB
Dart
part of '../../../main.dart';
|
|
|
|
class ModeSwitchWidget extends StatelessWidget {
|
|
|
|
final String caption;
|
|
final onChange;
|
|
final double captionFontSize;
|
|
final bool value;
|
|
final bool expanded;
|
|
final EdgeInsets padding;
|
|
|
|
ModeSwitchWidget({
|
|
Key key,
|
|
@required this.caption,
|
|
@required this.onChange,
|
|
this.captionFontSize,
|
|
this.value,
|
|
this.expanded: true,
|
|
this.padding: const EdgeInsets.only(left: Sizes.leftWidgetPadding, right: Sizes.rightWidgetPadding)
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Padding(
|
|
padding: this.padding,
|
|
child: Row(
|
|
children: <Widget>[
|
|
_buildCaption(),
|
|
Switch(
|
|
onChanged: (value) => onChange(value),
|
|
value: value ?? false,
|
|
)
|
|
],
|
|
)
|
|
);
|
|
}
|
|
|
|
Widget _buildCaption() {
|
|
Widget captionWidget = Text(
|
|
"$caption",
|
|
style: TextStyle(
|
|
fontSize: captionFontSize ?? Sizes.stateFontSize
|
|
),
|
|
);
|
|
if (expanded) {
|
|
return Expanded(
|
|
child: captionWidget,
|
|
);
|
|
}
|
|
return captionWidget;
|
|
}
|
|
|
|
} |