|
@@ -1,5 +1,7 @@
|
|
|
+import 'package:appflowy/generated/locale_keys.g.dart';
|
|
|
import 'package:appflowy/workspace/application/settings/prelude.dart';
|
|
|
import 'package:appflowy/workspace/presentation/settings/widgets/settings_appearance/theme_setting_entry_template.dart';
|
|
|
+import 'package:easy_localization/easy_localization.dart';
|
|
|
import 'package:flutter/material.dart';
|
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
|
|
|
@@ -15,14 +17,18 @@ class CreateFileSettings extends StatelessWidget {
|
|
|
@override
|
|
|
Widget build(BuildContext context) {
|
|
|
return ThemeSettingEntryTemplateWidget(
|
|
|
- label: 'Show rename dialog when creating a new file',
|
|
|
+ label:
|
|
|
+ LocaleKeys.settings_appearance_showNamingDialogWhenCreatingPage.tr(),
|
|
|
trailing: [
|
|
|
BlocProvider.value(
|
|
|
value: cubit,
|
|
|
child: BlocBuilder<CreateFileSettingsCubit, bool>(
|
|
|
builder: (context, state) {
|
|
|
+ _prevSetting = state;
|
|
|
return Switch(
|
|
|
value: state,
|
|
|
+ splashRadius: 0,
|
|
|
+ activeColor: Theme.of(context).colorScheme.primary,
|
|
|
onChanged: (value) {
|
|
|
cubit.toggle(value: value);
|
|
|
_prevSetting = value;
|