push method

Future push(
  1. Widget goToPage
)

Kullanım Şekli Bir sayfadan bir diğerine gidiş içindir context.push(HomeWidget());

Implementation

Future<dynamic> push(Widget goToPage) async {
  await Navigator.push(this, MaterialPageRoute(builder: (_) => goToPage));
}