|
@@ -53,7 +53,7 @@ class _RInputTextState extends State<RInputText> {
|
|
|
return Container(
|
|
|
//constraints: BoxConstraints(minWidth: _lineWidth!, maxWidth: 480),
|
|
|
width: _lineWidth,
|
|
|
- height: _textWrap! ? _height! * 4 : (_height!),
|
|
|
+ height: _textWrap! ? _height! * 4 : (_height! - 2),
|
|
|
padding: const EdgeInsets.only(right: 5, left: 5),
|
|
|
decoration: BoxDecoration(
|
|
|
border: Border.all(
|
|
@@ -159,7 +159,7 @@ class _RInputTextState extends State<RInputText> {
|
|
|
|
|
|
_textWrap = inputText.textWrap;
|
|
|
_fontSize = PtToPxConverter.ptToPx(inputText.fontSize);
|
|
|
- _height = _fontSize! > 30 ? 43 : 22;
|
|
|
+ _height = _fontSize! > 30 ? 41 : 22;
|
|
|
ReportInfo.instance.onReloadFinsh.addListener((sender, e) {
|
|
|
_initDatas();
|
|
|
});
|