main.dart 267 B

123456789101112131415
  1. import 'package:flutter/material.dart';
  2. import 'package:get/get.dart';
  3. import 'app/routes/app_pages.dart';
  4. void main() {
  5. runApp(
  6. GetMaterialApp(
  7. title: "Application",
  8. initialRoute: AppPages.INITIAL,
  9. getPages: AppPages.routes,
  10. ),
  11. );
  12. }