import ‘package:flutter/material.dart’;
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text(‘My First App’),
backgroundColor: Colors.blue,
),
body: Center(
child: Text(
‘Hello! Development shuru ho gayi hai.’,
style: TextStyle(fontSize: 20),
),
),
),
);
}
}
Leave a Reply
You must be logged in to post a comment.