ExpandableText constructor

const ExpandableText({
  1. Key? key,
  2. String text = '',
  3. int maxLines = 1,
  4. TextStyle? textStyle = const TextStyle(color: ui2A2F3C, fontSize: 16, height: 1.5),
  5. String shrinkText = '展开',
  6. String expandText = '收起',
  7. Color expandColor = ui5590F6,
})

Implementation

const ExpandableText({
  super.key,
  this.text = '',
  this.maxLines = 1,
  this.textStyle = const TextStyle(color: ui2A2F3C, fontSize: 16, height: 1.5),
  this.shrinkText = '展开',
  this.expandText = '收起',
  this.expandColor = ui5590F6,
});