Setting up the app
void main() async {
runApp(Application());
}
import 'package:flutter/material.dart';
class Application extends StatelessWidget {
const Application({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Tech camp Flutter',
debugShowCheckedModeBanner: false,
home: Scaffold()
);
}
}
Last updated
Was this helpful?