applyRounded method

Widget applyRounded(
  1. BuildContext context,
  2. Widget child
)

Applies rounded styling to a widget using the resolved BorderRadius

Implementation

Widget applyRounded(BuildContext context, Widget child) {
  return TwRoundedUtils.apply(context, style, child);
}