rajath_pai

ninja6

Jul 29th, 2021 (edited)
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.48 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3. void main() => runApp(MaterialApp(
  4.   home : Scaffold(
  5.     appBar : AppBar(
  6.       title : Text('App bar', style : TextStyle(color : Colors.red),),
  7.       centerTitle : true,
  8.       backgroundColor : Colors.black,
  9.     ),
  10.     body : Center(
  11.       child : Text('hello there!'),
  12.     ),
  13.     floatingActionButton : FloatingActionButton(
  14.       child : Text('click'),
  15.       onPressed : null,
  16.     ),
  17.   ),
  18.   debugShowCheckedModeBanner: false,
  19. ));
Add Comment
Please, Sign In to add comment