Question: import 'package:flutter / material . dart'; import 'Feature / Splash / Presintionloer / Splash . dart'; void main ( ) { runApp ( FruitsMarkt (

import 'package:flutter/material.dart';
import 'Feature/Splash/Presintionloer/Splash.dart';
void main(){
runApp(FruitsMarkt());
}
class FruitsMarkt extends StatelessWidget {
const FruitsMarkt({Key? key}): super (key: key);
@override
Widget build(BuildContext context){
return MaterialApp(
debugShowCheckedModeBanner: false,
home: SplashView(),
);
}
}
complete code

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!