fix: typo

This commit is contained in:
appflowy
2022-09-19 15:49:27 +08:00
parent 53cc0fff9d
commit d26d620db8
13 changed files with 228 additions and 293 deletions

View File

@ -177,7 +177,7 @@ class _Title extends StatelessWidget {
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 6),
child: FlowyText.medium(
LocaleKeys.grid_selectOption_pannelTitle.tr(),
LocaleKeys.grid_selectOption_panelTitle.tr(),
fontSize: 12,
color: theme.shader3,
),

View File

@ -167,7 +167,7 @@ class _FieldNameTextFieldState extends State<_FieldNameTextField> {
},
child: BlocBuilder<FieldEditorBloc, FieldEditorState>(
builder: (context, state) {
listenOnPopoverChhanged(context);
listenOnPopoverChanged(context);
return RoundedInputField(
height: 36,
@ -191,7 +191,7 @@ class _FieldNameTextFieldState extends State<_FieldNameTextField> {
);
}
void listenOnPopoverChhanged(BuildContext context) {
void listenOnPopoverChanged(BuildContext context) {
if (_popoverCallback != null) {
widget.popoverMutex.removePopoverStateListener(_popoverCallback!);
}

View File

@ -139,7 +139,7 @@ class SelectOptionColorList extends StatelessWidget {
child: SizedBox(
height: GridSize.typeOptionItemHeight,
child: FlowyText.medium(
LocaleKeys.grid_selectOption_colorPannelTitle.tr(),
LocaleKeys.grid_selectOption_colorPanelTitle.tr(),
fontSize: 12,
textAlign: TextAlign.left,
),

View File

@ -2,7 +2,6 @@ import 'package:app_flowy/plugins/grid/application/setting/setting_bloc.dart';
import 'package:easy_localization/easy_localization.dart';
import 'package:flowy_infra/image.dart';
import 'package:flowy_infra/theme.dart';
import 'package:flowy_infra_ui/flowy_infra_ui.dart';
import 'package:flowy_infra_ui/style_widget/button.dart';
import 'package:flowy_infra_ui/style_widget/scrolling/styled_list.dart';
import 'package:flowy_infra_ui/style_widget/text.dart';