mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-04 16:03:13 +00:00
39 lines
1 KiB
Dart
39 lines
1 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:selfprivacy/config/brand_colors.dart';
|
|
|
|
class SwitcherBlock extends StatelessWidget {
|
|
const SwitcherBlock({
|
|
super.key,
|
|
required this.child,
|
|
required this.isActive,
|
|
required this.onChange,
|
|
});
|
|
|
|
final Widget child;
|
|
final bool isActive;
|
|
final ValueChanged<bool> onChange;
|
|
|
|
@override
|
|
Widget build(final BuildContext context) => Container(
|
|
padding: const EdgeInsets.only(top: 20, bottom: 5),
|
|
decoration: const BoxDecoration(
|
|
border: Border(
|
|
bottom: BorderSide(width: 1, color: BrandColors.dividerColor),
|
|
),),
|
|
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,
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|