How to fix black screen in flutter while Navigating?
So in NewTrip() remove MaterialApp since it inherits from the parent. Just return Scaffold. class NewTrip extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( body: Text(‘NEW TRIP’), ); } }