diff --git a/app/assets/sample_data.json b/app/assets/sample_data.json index b420717e..c071105a 100644 --- a/app/assets/sample_data.json +++ b/app/assets/sample_data.json @@ -40,7 +40,8 @@ }, { "attributes":{ - "italic":true + "italic":true, + "background":"transparent" }, "insert":"library" }, diff --git a/app/lib/pages/home_page.dart b/app/lib/pages/home_page.dart index b42fa5db..17955e5c 100644 --- a/app/lib/pages/home_page.dart +++ b/app/lib/pages/home_page.dart @@ -79,7 +79,7 @@ class _HomePageState extends State { scrollController: ScrollController(), scrollable: true, focusNode: _focusNode, - autoFocus: true, + autoFocus: false, readOnly: false, enableInteractiveSelection: true, expands: false, diff --git a/lib/widgets/text_line.dart b/lib/widgets/text_line.dart index 2879746d..be42e038 100644 --- a/lib/widgets/text_line.dart +++ b/lib/widgets/text_line.dart @@ -115,6 +115,9 @@ class TextLine extends StatelessWidget { return Color.fromRGBO(int.parse(arr[0]), int.parse(arr[1]), int.parse(arr[2]), double.parse(arr[3])); } + if (s == 'transparent') { + return Colors.transparent; + } String hex = s.replaceFirst('#', ''); hex = hex.length == 6 ? 'ff' + hex : hex; int val = int.parse(hex, radix: 16);