From c6e4a0ba6932aef275baed58a4b32e9691d84b8b Mon Sep 17 00:00:00 2001 From: umang0503 <56040554+umang0503@users.noreply.github.com> Date: Tue, 1 Oct 2019 22:54:56 +0530 Subject: [PATCH] dart --- dart | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 dart diff --git a/dart b/dart new file mode 100644 index 0000000..a926e78 --- /dev/null +++ b/dart @@ -0,0 +1,41 @@ +import 'package:flutter/material.dart'; + +void main() => runApp(MyApp()); + +class MyApp extends StatelessWidget { + // This widget is the root of your application. + @override + Widget build(BuildContext context) { + return MaterialApp( + title: 'flutter app', + home: MyHomePage(), + ); + } +} + +class MyHomePage extends StatelessWidget{ + Widget build(BuildContext context){ + return Scaffold( + appBar : AppBar ( + title: Text('flutter app'), + ), + body: Column( + children: [ + Container( + width:double.infinity, + child : + Card( + color: Colors.lightBlue, + child: Text('chart!'), + elevation:5, + ), + ), + + Card(child: Text('LIT OF TX'),), + + ], + + ), + ); + } + }