Fix linter warnings in example

pull/145/head
Till Friebe 4 years ago
parent 483dba0e4a
commit e1793ead61
  1. 10
      example/lib/pages/home_page.dart
  2. 2
      example/lib/pages/read_only_page.dart

@ -74,7 +74,7 @@ class _HomePageState extends State<HomePage> {
),
body: RawKeyboardListener(
focusNode: FocusNode(),
onKey: (RawKeyEvent event) {
onKey: (event) {
if (event.data.isControlPressed && event.character == 'b') {
if (_controller!
.getSelectionStyle()
@ -107,15 +107,15 @@ class _HomePageState extends State<HomePage> {
customStyles: DefaultStyles(
h1: DefaultTextBlockStyle(
const TextStyle(
fontSize: 32.0,
fontSize: 32,
color: Colors.black,
height: 1.15,
fontWeight: FontWeight.w300,
),
const Tuple2(16.0, 0.0),
const Tuple2(0.0, 0.0),
const Tuple2(16, 0),
const Tuple2(0, 0),
null),
sizeSmall: const TextStyle(fontSize: 9.0),
sizeSmall: const TextStyle(fontSize: 9),
));
if (kIsWeb) {
quillEditor = QuillEditor(

@ -53,7 +53,7 @@ class _ReadOnlyPageState extends State<ReadOnlyPage> {
embedBuilder: defaultEmbedBuilderWeb);
}
return Padding(
padding: const EdgeInsets.all(8.0),
padding: const EdgeInsets.all(8),
child: Container(
decoration: BoxDecoration(
color: Colors.white,

Loading…
Cancel
Save