Skip to content

Instantly share code, notes, and snippets.

@pdr-tuche
Created October 9, 2022 22:21
Show Gist options
  • Save pdr-tuche/a72424afdef64953822963bb15f89dcd to your computer and use it in GitHub Desktop.
Save pdr-tuche/a72424afdef64953822963bb15f89dcd to your computer and use it in GitHub Desktop.
primeiro codigo flutter
// 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