Update example and CI

pull/1489/head^2
Ellet 1 year ago
parent 03a7101f26
commit 9ec7285c14
No known key found for this signature in database
GPG Key ID: C488CC70BBCEF0D1
  1. 4
      .github/workflows/main.yml
  2. 22
      example/lib/presentation/quill/quill_editor.dart

@ -45,3 +45,7 @@ jobs:
- name: Run flutter tests
run: flutter test
- name: Flutter Build web
run: flutter build web --release --verbose --dart-define=CI=true
working-directory: ./example

@ -1,4 +1,5 @@
import 'dart:io' as io show Directory, File;
import 'dart:ui' show FontFeature;
import 'package:cached_network_image/cached_network_image.dart'
show CachedNetworkImageProvider;
@ -32,6 +33,27 @@ class MyQuillEditor extends StatelessWidget {
scrollController: scrollController,
focusNode: focusNode,
configurations: configurations.copyWith(
customStyles: const DefaultStyles(
h1: DefaultTextBlockStyle(
TextStyle(
fontSize: 32,
height: 1.15,
fontWeight: FontWeight.w300,
),
VerticalSpacing(16, 0),
VerticalSpacing(0, 0),
null,
),
sizeSmall: TextStyle(fontSize: 9),
subscript: TextStyle(
fontFamily: 'SF-UI-Display',
fontFeatures: [FontFeature.subscripts()],
),
superscript: TextStyle(
fontFamily: 'SF-UI-Display',
fontFeatures: [FontFeature.superscripts()],
),
),
scrollable: true,
placeholder: 'Start writting your notes...',
padding: const EdgeInsets.all(16),

Loading…
Cancel
Save