Update QuillEditor constructor

pull/13/head
singerdmx 4 years ago
parent 31f16bedf0
commit 2b6086ae3f
  1. 35
      app/lib/pages/home_page.dart
  2. 7
      lib/widgets/editor.dart

@ -1,7 +1,6 @@
import 'dart:convert'; import 'dart:convert';
import 'dart:io'; import 'dart:io';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/services.dart'; import 'package:flutter/services.dart';
import 'package:flutter_quill/models/documents/document.dart'; import 'package:flutter_quill/models/documents/document.dart';
@ -10,7 +9,6 @@ import 'package:flutter_quill/widgets/controller.dart';
import 'package:flutter_quill/widgets/default_styles.dart'; import 'package:flutter_quill/widgets/default_styles.dart';
import 'package:flutter_quill/widgets/editor.dart'; import 'package:flutter_quill/widgets/editor.dart';
class HomePage extends StatefulWidget { class HomePage extends StatefulWidget {
@override @override
_HomePageState createState() => _HomePageState(); _HomePageState createState() => _HomePageState();
@ -34,12 +32,14 @@ class _HomePageState extends State<HomePage> {
final result = await rootBundle.loadString('assets/welcome.note'); final result = await rootBundle.loadString('assets/welcome.note');
final doc = Document.fromJson(jsonDecode(result)); final doc = Document.fromJson(jsonDecode(result));
setState(() { setState(() {
_controller = QuillController(document: doc, selection: TextSelection.collapsed(offset: 0)); _controller = QuillController(
document: doc, selection: TextSelection.collapsed(offset: 0));
}); });
} catch (error) { } catch (error) {
final doc = Document()..insert(0, 'Empty asset'); final doc = Document()..insert(0, 'Empty asset');
setState(() { setState(() {
_controller = QuillController(document: doc, selection: TextSelection.collapsed(offset: 0)); _controller = QuillController(
document: doc, selection: TextSelection.collapsed(offset: 0));
}); });
} }
} }
@ -51,18 +51,17 @@ class _HomePageState extends State<HomePage> {
} }
return Scaffold( return Scaffold(
appBar: AppBar( appBar: AppBar(
backgroundColor: Colors.grey.shade800, backgroundColor: Colors.grey.shade800,
elevation: 0, elevation: 0,
centerTitle: false, centerTitle: false,
title: Text( title: Text(
'Flutter Quill', 'Flutter Quill',
),
actions: [
],
), ),
body: _buildWelcomeEditor(context), actions: [],
); ),
body: _buildWelcomeEditor(context),
);
} }
Widget _buildWelcomeEditor(BuildContext context) { Widget _buildWelcomeEditor(BuildContext context) {
@ -83,6 +82,7 @@ class _HomePageState extends State<HomePage> {
embedBuilder: _embedBuilder, embedBuilder: _embedBuilder,
enableInteractiveSelection: true, enableInteractiveSelection: true,
expands: false, expands: false,
padding: EdgeInsets.zero,
), ),
), ),
), ),
@ -101,8 +101,7 @@ class _HomePageState extends State<HomePage> {
} }
throw UnimplementedError( throw UnimplementedError(
'Embeddable type "${node.value.type}" is not supported by default embed ' 'Embeddable type "${node.value.type}" is not supported by default embed '
'builder of QuillEditor. You must pass your own builder function to ' 'builder of QuillEditor. You must pass your own builder function to '
'embedBuilder property of QuillEditor or QuillField widgets.'); 'embedBuilder property of QuillEditor or QuillField widgets.');
} }
} }

@ -98,7 +98,7 @@ class QuillEditor extends StatefulWidget {
this.focusNode, this.focusNode,
@required this.scrollController, @required this.scrollController,
@required this.scrollable, @required this.scrollable,
this.padding, @required this.padding,
@required this.autoFocus, @required this.autoFocus,
this.showCursor, this.showCursor,
@required this.readOnly, @required this.readOnly,
@ -106,8 +106,8 @@ class QuillEditor extends StatefulWidget {
this.minHeight, this.minHeight,
this.maxHeight, this.maxHeight,
@required this.expands, @required this.expands,
this.textCapitalization, this.textCapitalization = TextCapitalization.sentences,
this.keyboardAppearance, this.keyboardAppearance = Brightness.light,
this.scrollPhysics, this.scrollPhysics,
this.onLaunchUrl, this.onLaunchUrl,
@required this.embedBuilder}) @required this.embedBuilder})
@ -437,6 +437,7 @@ class RawEditor extends StatefulWidget {
showCursor = showCursor ?? !readOnly, showCursor = showCursor ?? !readOnly,
assert(embedBuilder != null, 'embedBuilder cannot be null'), assert(embedBuilder != null, 'embedBuilder cannot be null'),
assert(expands != null, 'expands cannot be null'), assert(expands != null, 'expands cannot be null'),
assert(padding != null),
super(key: key); super(key: key);
@override @override

Loading…
Cancel
Save