getBottomDivider method
Implementation
Widget? getBottomDivider(BuildContext context, double width) {
final theme = TUITheme.of(context);
return (style.style == TUIOverlayMobileStyleType.handle)
? null
: Column(
children: [
const Spacer(),
Container(
width: width,
height: 1,
decoration:
BoxDecoration(color: theme.colors.surfaceVariantHover),
)
],
);
}