Skip to content

Instantly share code, notes, and snippets.

@jlamimoso
Created February 23, 2023 21:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jlamimoso/7275506b14b6f2b17f527c4e945ddac4 to your computer and use it in GitHub Desktop.
Save jlamimoso/7275506b14b6f2b17f527c4e945ddac4 to your computer and use it in GitHub Desktop.
Flutter example of theming a app
import 'package:flutter/material.dart';
const Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData.dark().copyWith(
scaffoldBackgroundColor: Colors.brown,
appBarTheme: const AppBarTheme(
color: Colors.green,
),
),
debugShowCheckedModeBanner: false,
home: MyWidget(),
);
}
}
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Teste App', style: Theme.of(context).textTheme.headlineMedium,),
),
body: Column(
children: [
Text('Hello, World!',
style: Theme.of(context).textTheme.titleMedium),
Text('Hello, World!',
style: Theme.of(context).textTheme.headlineMedium),
Text('Hello, World!',
style: Theme.of(context).textTheme.headlineMedium),
],
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment