mirror of
https://github.com/qinglong-app/qinglong_app.git
synced 2025-10-09 16:48:19 +08:00
1.1.0 release
This commit is contained in:
@@ -27,6 +27,7 @@ class _ConfigEditPageState extends ConsumerState<ConfigEditPage> {
|
|||||||
_codeController?.dispose();
|
_codeController?.dispose();
|
||||||
super.dispose();
|
super.dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
result = widget.content;
|
result = widget.content;
|
||||||
@@ -91,6 +92,15 @@ class _ConfigEditPageState extends ConsumerState<ConfigEditPage> {
|
|||||||
child: CodeField(
|
child: CodeField(
|
||||||
controller: _codeController!,
|
controller: _codeController!,
|
||||||
expands: true,
|
expands: true,
|
||||||
|
wrap: true,
|
||||||
|
lineNumberStyle: const LineNumberStyle(
|
||||||
|
width: 0,
|
||||||
|
margin: 0,
|
||||||
|
textStyle: TextStyle(
|
||||||
|
color: Colors.transparent,
|
||||||
|
fontSize: 0,
|
||||||
|
),
|
||||||
|
),
|
||||||
background: ref.watch(themeProvider).themeColor.settingBgColor(),
|
background: ref.watch(themeProvider).themeColor.settingBgColor(),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -120,6 +120,15 @@ class _ScriptEditPageState extends ConsumerState<ScriptEditPage> {
|
|||||||
child: CodeField(
|
child: CodeField(
|
||||||
controller: _codeController!,
|
controller: _codeController!,
|
||||||
expands: true,
|
expands: true,
|
||||||
|
wrap: true,
|
||||||
|
lineNumberStyle: const LineNumberStyle(
|
||||||
|
width: 0,
|
||||||
|
margin: 0,
|
||||||
|
textStyle: TextStyle(
|
||||||
|
color: Colors.transparent,
|
||||||
|
fontSize: 0,
|
||||||
|
),
|
||||||
|
),
|
||||||
background: ref.watch(themeProvider).themeColor.tabBarColor(),
|
background: ref.watch(themeProvider).themeColor.tabBarColor(),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|||||||
Reference in New Issue
Block a user