Skip to content

Instantly share code, notes, and snippets.

View gabrielaraujoz's full-sized avatar
🏠
Working from home - Flutter

Gabriel Araujo gabrielaraujoz

🏠
Working from home - Flutter
View GitHub Profile
@gabrielaraujoz
gabrielaraujoz / main.dart
Last active October 26, 2022 19:11
Flutter Theme Demo - Part 1
// 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(MyApp());
class MyApp extends StatelessWidget {
@override
@gabrielaraujoz
gabrielaraujoz / main.dart
Last active October 24, 2022 13:05
Flutter TextStyle demo
// Copyright 2019 The Flutter team. 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(MyApp());
class MyApp extends StatelessWidget {
@override
@gabrielaraujoz
gabrielaraujoz / main.dart
Created October 21, 2022 12:59
Flutter Color demonstration
// Copyright 2019 The Flutter team. 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(MyApp());
class MyApp extends StatelessWidget {
@override