Support transparent color

pull/13/head
singerdmx 4 years ago
parent acc779d394
commit 5e25894956
  1. 3
      app/assets/sample_data.json
  2. 2
      app/lib/pages/home_page.dart
  3. 3
      lib/widgets/text_line.dart

@ -40,7 +40,8 @@
},
{
"attributes":{
"italic":true
"italic":true,
"background":"transparent"
},
"insert":"library"
},

@ -79,7 +79,7 @@ class _HomePageState extends State<HomePage> {
scrollController: ScrollController(),
scrollable: true,
focusNode: _focusNode,
autoFocus: true,
autoFocus: false,
readOnly: false,
enableInteractiveSelection: true,
expands: false,

@ -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);

Loading…
Cancel
Save