Upgrade version

pull/13/head
Xin Yao 4 years ago
parent 4213aa1087
commit 99680bd91d
  1. 5
      CHANGELOG.md
  2. 14
      app/lib/pages/home_page.dart
  3. 2
      pubspec.yaml

@ -60,4 +60,7 @@
* Fix static analysis error.
## [0.2.2]
* Update git repo.
* Update git repo.
## [0.2.3]
* Support custom styles and image on local device storage without uploading.

@ -1,6 +1,7 @@
import 'dart:async';
import 'dart:convert';
import 'dart:io';
import 'package:tuple/tuple.dart';
import 'package:app/pages/read_only_page.dart';
import 'package:flutter/material.dart';
@ -85,7 +86,18 @@ class _HomePageState extends State<HomePage> {
enableInteractiveSelection: true,
expands: false,
padding: EdgeInsets.zero,
customStyles: DefaultStyles(sizeSmall: TextStyle(fontSize: 9.0)),
customStyles: DefaultStyles(
h1: DefaultTextBlockStyle(
TextStyle(
fontSize: 32.0,
color: Colors.black,
height: 1.15,
fontWeight: FontWeight.w300,
),
Tuple2(16.0, 0.0),
Tuple2(0.0, 0.0),
null),
sizeSmall: TextStyle(fontSize: 9.0)),
),
),
),

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

Loading…
Cancel
Save