selfprivacy.org.app/lib/ui/components/switch_block/switch_bloc.dart

37 lines
982 B
Dart
Raw Normal View History

2020-12-06 09:46:12 +02:00
import 'package:flutter/material.dart';
import 'package:selfprivacy/config/brand_colors.dart';
// TODO: Delete this file.
2020-12-06 09:46:12 +02:00
class SwitcherBlock extends StatelessWidget {
const SwitcherBlock({
2021-03-15 17:39:44 +02:00
required this.child,
required this.isActive,
required this.onChange,
final super.key,
2022-06-05 22:36:32 +03:00
});
2020-12-06 09:46:12 +02:00
final Widget child;
final bool isActive;
2020-12-08 21:26:51 +02:00
final ValueChanged<bool> onChange;
2020-12-06 09:46:12 +02:00
@override
2022-06-05 22:36:32 +03:00
Widget build(final BuildContext context) => Container(
padding: const EdgeInsets.symmetric(vertical: 16),
child: Row(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Flexible(child: child),
const SizedBox(width: 5),
Switch(
activeColor: BrandColors.green1,
activeTrackColor: BrandColors.green2,
onChanged: onChange,
value: isActive,
),
],
),
);
2020-12-06 09:46:12 +02:00
}