Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

import 'package:flutter/cupertino.

dart';
import 'package:flutter/material.dart';

main(){
runApp(
MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text("TDSI"),
centerTitle: true,
backgroundColor: Colors.green,
),

body: const Center(


child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Text("TDSI", style: TextStyle(fontSize: 50)),

Row(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
TextButton(onPressed: null, child: Icon(Icons.add)),
TextButton(onPressed: null, child: Icon(Icons.delete))

],
)

],
),
),
),
));
}

You might also like