FxText constructor

const FxText(
  1. String text, {
  2. Key? key,
  3. EdgeInsets padding = EdgeInsets.zero,
  4. FxTextStyle style = const FxTextStyle(),
  5. TextAlign textAlign = TextAlign.start,
  6. FxTextOnLinkTap? onTap,
})

Implementation

const FxText(
  this.text, {
  super.key,
  this.padding = EdgeInsets.zero,
  this.style = const FxTextStyle(),
  this.textAlign = TextAlign.start,
  this.onTap,
});