SystemChrome.setEnabledSystemUIOverlays([SystemUiOverlay.bottom]);
import 'package:flutter/services.dart';
void main() {
WidgetsFlutterBinding.ensureInitialized();
SystemChrome.setEnabledSystemUIOverlays([
SystemUiOverlay.bottom, //This line is used for showing the bottom bar
]);
runApp(myApp());
}