Last updated:
0 purchases
materialpackage
// File: new_try/lib/new_try.dart
import 'package:flutter/material.dart';
class NewTry extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
appBar: AppBar(title: const Text("STORY BOARD")),
body: Center(
child: Container(
color: Colors.green,
width: 300,
height: 600,
child: const Text(
"HI YOU SUCCESSFULLY CREATED YOUR FIRST FLUTTER PROJECT,FLUTTER IS AN AWESOME FRAME FOR CROSS PLATFORM DEVELOPMENT",
),
),
),
),
);
}
}
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.