import 'package:flutter/material.dart';
void main() => runApp(MaterialApp(
home: Scaffold(
appBar: AppBar(
toolbarHeight: 50.0,
title: const Text(
'This is the title !',
style: TextStyle(color: Colors.black),
),
backgroundColor: Colors.amber,
),
),
));
