NomoScaffoldThemeData.from constructor
NomoScaffoldThemeData.from(
- NomoScaffoldColorData colors,
- NomoScaffoldSizingData sizing,
- NomoScaffoldConstants constants
Implementation
factory NomoScaffoldThemeData.from(
NomoScaffoldColorData colors,
NomoScaffoldSizingData sizing,
NomoScaffoldConstants constants,
) {
return NomoScaffoldThemeData(
backgroundColor: colors.backgroundColor,
padding: sizing.padding,
showBottomBar: sizing.showBottomBar,
showSider: sizing.showSider,
);
}