diff --git a/lib/module/config/config_page.dart b/lib/module/config/config_page.dart index 0da5724..4db4278 100644 --- a/lib/module/config/config_page.dart +++ b/lib/module/config/config_page.dart @@ -33,6 +33,9 @@ class _ConfigPageState extends State { styleOptions: EditorModelStyleOptions( fontSize: 13, heightOfContainer: MediaQuery.of(context).size.height - kToolbarHeight - kBottomNavigationBarHeight - 150, + editorBorderColor: Theme.of(context).scaffoldBackgroundColor, + editButtonBackgroundColor: Theme.of(context).scaffoldBackgroundColor, + editorColor: Theme.of(context).scaffoldBackgroundColor, ), ); myController.text = model.content; @@ -57,19 +60,20 @@ class _ConfigPageState extends State { ), const Spacer(), CupertinoButton( - child: Text( - "编辑", - style: TextStyle( - color: Theme.of(context).primaryColor, - fontSize: 16, - ), + child: Text( + "编辑", + style: TextStyle( + color: Theme.of(context).primaryColor, + fontSize: 16, ), - onPressed: () { - Navigator.of(context).pushNamed(Routes.route_ConfigEdit, arguments: { - "title": model.title, - "content": model.content, - }); - }), + ), + onPressed: () { + Navigator.of(context).pushNamed(Routes.route_ConfigEdit, arguments: { + "title": model.title, + "content": model.content, + }); + }, + ), ], ), Expanded(