[text] 2.33

Viewer

  1. import 'package:flutter/material.dart';
  2. import 'package:rangga/add_form.dart';
  3. import 'package:rangga/splash.dart';
  4.  
  5. void main() {
  6.   runApp(MyApp());
  7. }
  8.  
  9. class MyApp extends StatelessWidget {
  10.   @override
  11.   Widget build(BuildContext context) {
  12.     return MaterialApp(
  13.       debugShowCheckedModeBanner: false,
  14.       home: SplashScreen(),
  15.       routes: {
  16.         '/addForm': (context) => AddForm(),
  17.       },
  18.     );
  19.   }
  20. }

Editor

You can edit this paste and save as new:


File Description
  • 2.33
  • Paste Code
  • 11 Dec-2023
  • 435 Bytes
You can Share it: