[Mobile] Support custom image size: make margin optional and support alignment

pull/324/head
Xin Yao 4 years ago
parent c932c800dc
commit 2195c4ae3e
  1. 4
      README.md
  2. 2
      example/assets/sample_data.json
  3. 45
      lib/src/widgets/editor.dart

@ -98,14 +98,14 @@ It is required to provide `filePickImpl` for toolbar image button, e.g. [Sample
## Custom Size Image for Mobile
Define `mobileWidth`, `mobileHeight` and `mobileMargin` as follows:
Define `mobileWidth`, `mobileHeight`, `mobileMargin`, `mobileAlignment` as follows:
```
{
"insert": {
"image": "https://user-images.githubusercontent.com/122956/72955931-ccc07900-3d52-11ea-89b1-d468a6e2aa2b.png"
},
"attributes":{
"style":"mobileWidth: 50; mobileHeight: 50; mobileMargin: 10;"
"style":"mobileWidth: 50; mobileHeight: 50; mobileMargin: 10; mobileAlignment: topLeft"
}
}
```

@ -5,7 +5,7 @@
},
"attributes":{
"width":"230",
"style":"display: block; margin: auto; mobileWidth: 50; mobileHeight: 50; mobileMargin: 10;"
"style":"display: block; margin: auto; mobileWidth: 50; mobileHeight: 50; mobileMargin: 10; mobileAlignment: topLeft"
}
},
{

@ -110,21 +110,52 @@ Widget _defaultEmbedBuilder(
final style = node.style.attributes['style'];
if (_isMobile() && style != null) {
final _attrs = parseKeyValuePairs(style.value.toString(),
{'mobileWidth', 'mobileHeight', 'mobileMargin'});
{'mobileWidth', 'mobileHeight', 'mobileMargin', 'mobileAlignment'});
if (_attrs.isNotEmpty) {
assert(_attrs.length == 3,
'mobileWidth, mobileHeight, mobileMargin must be specified');
assert(
_attrs['mobileWidth'] != null && _attrs['mobileHeight'] != null,
'mobileWidth and mobileHeight must be specified');
final w = double.parse(_attrs['mobileWidth']!);
final h = double.parse(_attrs['mobileHeight']!);
final m = double.parse(_attrs['mobileMargin']!);
final m = _attrs['mobileMargin'] == null
? 0.0
: double.parse(_attrs['mobileMargin']!);
var a = Alignment.center;
if (_attrs['mobileAlignment'] != null) {
final _index = [
'topLeft',
'topCenter',
'topRight',
'centerLeft',
'center',
'centerRight',
'bottomLeft',
'bottomCenter',
'bottomRight'
].indexOf(_attrs['mobileAlignment']!);
if (_index >= 0) {
a = [
Alignment.topLeft,
Alignment.topCenter,
Alignment.topRight,
Alignment.centerLeft,
Alignment.center,
Alignment.centerRight,
Alignment.bottomLeft,
Alignment.bottomCenter,
Alignment.bottomRight
][_index];
}
}
return Padding(
padding: EdgeInsets.all(m),
child: imageUrl.startsWith('http')
? Image.network(imageUrl, width: w, height: h)
? Image.network(imageUrl, width: w, height: h, alignment: a)
: isBase64(imageUrl)
? Image.memory(base64.decode(imageUrl),
width: w, height: h)
: Image.file(io.File(imageUrl), width: w, height: h));
width: w, height: h, alignment: a)
: Image.file(io.File(imageUrl),
width: w, height: h, alignment: a));
}
}
return imageUrl.startsWith('http')

Loading…
Cancel
Save