xxxxxxxxxx
),
import 'package:flutter/material.dart';
void main() => runApp(MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('MY First app'),
centerTitle: true,
),
body: Center(
child: Text('hello mc lomesss'),
floatingActionButton: FloatingActionButton(
child: Icon(Icons.add),
),
),
),
));
),