getDefaultStyle method
Implementation
@override
AntdBoxStyle getDefaultStyle(
BuildContext context, AntdTheme theme, AntdMapToken token) {
var style = AntdBoxStyle(
alignment: Alignment.bottomCenter,
textStyle: token.font.sm.copyWith(color: token.colorText.secondary),
padding: token.size.seed.vertical);
return margeStyle(
style, theme.pullToRefreshStyle?.call(context, this, style, token));
}