import 'package:smartfit_app_mobile/common/colo_extension.dart'; import 'package:flutter/material.dart'; class BlankView extends StatefulWidget { const BlankView({super.key}); @override State createState() => _BlankViewState(); } class _BlankViewState extends State { @override Widget build(BuildContext context) { return Scaffold( backgroundColor: TColor.white, ); } }