TL;DR First Screen Navigate to Second Screen using import 'package:flutter/cupertino.dart';import 'second_screen.dart';showCupertinoModalPopup(context: context, builder: (context) => SecondScreen()); Second Screen import 'dart:ui';Scaffold( appBar: AppBar( backgroundColor: Colors.transparent, ), backgroundColor: […]