diff --git a/CHANGELOG.md b/CHANGELOG.md index 52add93f..60fd26e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# [5.3.2] +* Add more font family. + # [5.3.1] * Enable search when text is not empty. diff --git a/example/assets/fonts/Nunito-Regular.ttf b/example/assets/fonts/Nunito-Regular.ttf new file mode 100644 index 00000000..fdeb0186 Binary files /dev/null and b/example/assets/fonts/Nunito-Regular.ttf differ diff --git a/example/assets/fonts/Pacifico-Regular.ttf b/example/assets/fonts/Pacifico-Regular.ttf new file mode 100644 index 00000000..b9265a2a Binary files /dev/null and b/example/assets/fonts/Pacifico-Regular.ttf differ diff --git a/example/assets/fonts/RobotoMono-Regular.ttf b/example/assets/fonts/RobotoMono-Regular.ttf new file mode 100644 index 00000000..5919b5d1 Binary files /dev/null and b/example/assets/fonts/RobotoMono-Regular.ttf differ diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 1c261b84..5b5a8360 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -73,6 +73,15 @@ flutter: - family: square-peg fonts: - asset: assets/fonts/SquarePeg-Regular.ttf + - family: nunito + fonts: + - asset: assets/fonts/Nunito-Regular.ttf + - family: pacifico + fonts: + - asset: assets/fonts/Pacifico-Regular.ttf + - family: roboto-mono + fonts: + - asset: assets/fonts/RobotoMono-Regular.ttf # An image asset can refer to one or more resolution-specific "variants", see # https://flutter.dev/assets-and-images/#resolution-aware. diff --git a/lib/src/widgets/toolbar.dart b/lib/src/widgets/toolbar.dart index b901f74f..198b6dff 100644 --- a/lib/src/widgets/toolbar.dart +++ b/lib/src/widgets/toolbar.dart @@ -180,6 +180,9 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget { 'Monospace': 'monospace', 'Ibarra Real Nova': 'ibarra-real-nova', 'SquarePeg': 'square-peg', + 'Nunito': 'nunito', + 'Pacifico': 'pacifico', + 'Roboto Mono': 'roboto-mono', 'Clear': 'Clear' }; diff --git a/pubspec.yaml b/pubspec.yaml index 64d3b81a..e70dc559 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_quill description: A rich text editor supporting mobile and web (Demo App @ bulletjournal.us) -version: 5.3.1 +version: 5.3.2 #author: bulletjournal homepage: https://bulletjournal.us/home/index.html repository: https://github.com/singerdmx/flutter-quill