buildThemeMode method
Implementation
Widget buildThemeMode(BuildContext context) {
return SizedBox(
height: 60.0,
child: Row(
children: [
AppText('Theme', style: TextStyles.normal(context)),
const Spacer(),
Obx(() => _ThemeSegmentedButton(
selected: controller.themeMode.value,
onSelect: controller.setThemeMode,
))
],
),
);
}