getFolder method
Implementation
Widget getFolder() {
return Center(
child: Padding(
padding: const EdgeInsets.only(top: 8),
child: Stack(
children: [
const UFUThumbFolder(),
(folderCount != null)
? Positioned(
top: 40,
left: 10,
child: UFUText(
text: folderCount!,
textColor: AppTheme.themeColors.primary,
))
: const SizedBox.shrink(),
],
),
),
);
}