-
Notifications
You must be signed in to change notification settings - Fork 2
Navigasi
Cecep Budiman edited this page Aug 9, 2021
·
1 revision
-
Untuk menavigasi, disini kita dapat menggunakan class navigator_custom.
-
pertama import terlebih dahulu class tersebut:
import 'package:flutterboiler/utils/navigator_custom.dart';- untuk mengganti screen yg skr dengan screen yg baru dapat menggunakan 'pushReplacement'.
context.pushReplacement(to: 'login');- untuk menambah screen diatas screen yg skr dapat menggunakan 'push'
context.push(to: 'notification');