Created
October 9, 2022 22:21
-
-
Save pdr-tuche/a72424afdef64953822963bb15f89dcd to your computer and use it in GitHub Desktop.
primeiro codigo flutter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file | |
// for details. All rights reserved. Use of this source code is governed by a | |
// BSD-style license that can be found in the LICENSE file. | |
import 'package:flutter/material.dart'; | |
void main(){ | |
runApp(MaterialApp( | |
home: Scaffold( | |
appBar: AppBar( | |
title: Text('Primeiro App'), | |
), | |
body: Center( | |
child: Text('oi mundo', style: TextStyle( | |
color:Colors.purple, | |
fontSize: 22.3, | |
fontWeight: FontWeight.w700 | |
)), | |
), | |
) | |
)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment