-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2. 修复每 8 个小时就要重新登录的 bug
- Loading branch information
Showing
7 changed files
with
162 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
## 2.16.3+30 | ||
|
||
1. 修复发帖按钮不见了的 bug | ||
2. 修复每 8 个小时就要重新登录的 bug | ||
|
||
## 2.16.2+29 | ||
|
||
1. 优化手机端样式 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:flutter_quill/flutter_quill.dart'; | ||
|
||
class EditPage extends StatefulWidget { | ||
const EditPage({super.key}); | ||
|
||
@override | ||
State<EditPage> createState() => _EditPageState(); | ||
} | ||
|
||
class _EditPageState extends State<EditPage> { | ||
final _controller = QuillController.basic(); | ||
|
||
@override | ||
void dispose() { | ||
_controller.dispose(); | ||
super.dispose(); | ||
} | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return Scaffold( | ||
body: Column( | ||
children: [ | ||
QuillSimpleToolbar( | ||
controller: _controller, | ||
configurations: const QuillSimpleToolbarConfigurations(), | ||
), | ||
Expanded( | ||
child: QuillEditor.basic( | ||
controller: _controller, | ||
configurations: const QuillEditorConfigurations(), | ||
), | ||
) | ||
], | ||
), | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
1. 大大提升还原度 | ||
2. 优化手机端样式 | ||
1. 修复发帖按钮不见了的 bug | ||
2. 修复每 8 个小时就要重新登录的 bug |