Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions dart
Original file line number Diff line number Diff line change
@@ -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: <Widget>[
Container(
width:double.infinity,
child :
Card(
color: Colors.lightBlue,
child: Text('chart!'),
elevation:5,
),
),

Card(child: Text('LIT OF TX'),),

],

),
);
}
}