0% found this document useful (0 votes)
19 views1 page

Flutter App for School Fee Management

This document contains a Flutter application code snippet that sets up a basic app structure. It imports necessary packages and defines a main function that runs the MyApp widget. The MyApp widget creates a MaterialApp with a title, theme, and sets the home screen to a Dashboard widget.

Uploaded by

mbokojeremie809
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views1 page

Flutter App for School Fee Management

This document contains a Flutter application code snippet that sets up a basic app structure. It imports necessary packages and defines a main function that runs the MyApp widget. The MyApp widget creates a MaterialApp with a title, theme, and sets the home screen to a Dashboard widget.

Uploaded by

mbokojeremie809
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Import ‘package :flutter/material.

dart’ ;

Import ‘screens/[Link]’ ;

Void main() {

runApp(MyApp()) ;

Class MyApp extends StatelessWidget {

@override

Widget build(BuildContext context) {

Return MaterialApp(

debugShowCheckedModeBanner : false,

title : ‘Gestion des Frais Scolaires’,

theme : ThemeData(

primarySwatch : [Link],

visualDensity : [Link],

),

Home : Dashboard(),

);

You might also like