You are on page 1of 1

FACULTY OF ENGINEERING AND TECHNOLOGY

Department of Computer Engineering


01CE0610 – App Development Using Flutter– Lab Manual

Practical 2: Create a “Hello Flutter” application.

Main.dart

import
'package:flutter/material.dart'; void
main()
{
runApp(MaterialApp( debugShowC
heckedModeBanner:
false, home:
Scaffold( backgroundColor:
Colors.white, appBar: AppBar(
title: const Text("Practical 2"),
backgroundColor: Colors.cyanAccent,
foregroundColor: Colors.black,
),
body: Center( child: Text("Hello World! Welcome to Flutter
Development")
)
),
));
}
Output:

92220103007 BATCH – 6TC1 C

You might also like