Update toolbar in sample home page

pull/63/head
Xin Yao 4 years ago
parent 94210c50de
commit 9174208c1d
  1. 5
      CHANGELOG.md
  2. 10
      app/lib/pages/home_page.dart
  3. 2
      app/pubspec.lock
  4. 2
      pubspec.yaml

@ -120,4 +120,7 @@
* Support flutter 2.0. * Support flutter 2.0.
## [1.0.1] ## [1.0.1]
* Fix static analysis errors. * Fix static analysis errors.
## [1.0.2]
* Update toolbar in sample home page.

@ -127,12 +127,10 @@ class _HomePageState extends State<HomePage> {
), ),
), ),
), ),
Expanded( Container(
child: Container( child: QuillToolbar.basic(
child: QuillToolbar.basic( controller: _controller,
controller: _controller, onImagePickCallback: _onImagePickCallback),
onImagePickCallback: _onImagePickCallback),
),
), ),
], ],
), ),

@ -145,7 +145,7 @@ packages:
path: ".." path: ".."
relative: true relative: true
source: path source: path
version: "1.0.1" version: "1.0.2"
flutter_test: flutter_test:
dependency: "direct dev" dependency: "direct dev"
description: flutter description: flutter

@ -1,6 +1,6 @@
name: flutter_quill name: flutter_quill
description: One client and affiliated collaborator of Flutter Quill is Bullet Journal App. description: One client and affiliated collaborator of Flutter Quill is Bullet Journal App.
version: 1.0.1 version: 1.0.2
#author: bulletjournal #author: bulletjournal
homepage: https://bulletjournal.us/home/index.html homepage: https://bulletjournal.us/home/index.html
repository: https://github.com/singerdmx/flutter-quill.git repository: https://github.com/singerdmx/flutter-quill.git

Loading…
Cancel
Save