Advertisement
joaopaulofcc

Untitled

Sep 23rd, 2020
842
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.60 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3. void main() => runApp(MyApp());
  4.  
  5. class MyApp extends StatelessWidget {
  6.   @override
  7.   @override
  8.   Widget build(BuildContext context) {
  9.     return MaterialApp(
  10.       home: Scaffold(
  11.         appBar: AppBar(
  12.           title: Text('Cadastrando produto'),
  13.         ),
  14.         body: Column(
  15.           children: <Widget>[
  16.             TextField(),
  17.             TextField(),
  18.             TextField(),
  19.             RaisedButton(
  20.               child: Text('Cadastrar'),
  21.               onPressed: () {},
  22.             )
  23.           ],
  24.         ),
  25.       ),
  26.     );
  27.   }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement