Skip to content

Instantly share code, notes, and snippets.

@miajimyu
Created October 2, 2019 12:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miajimyu/704a56487406375475aeeea93f012f48 to your computer and use it in GitHub Desktop.
Save miajimyu/704a56487406375475aeeea93f012f48 to your computer and use it in GitHub Desktop.
ThemeData and primarySwatch in Flutter
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.purple,
accentColor: Colors.amber,
),
home: MyHomePage(),
);
}
}
class MyHomePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Flutter Demo Home Page'),
),
body: Center(
child: Container(
width: 100,
height: 100,
color: Theme.of(context).primaryColor,
),
),
floatingActionButton: FloatingActionButton(
onPressed: () {},
child: Icon(Icons.add),
),
);
}
}
@miajimyu
Copy link
Author

Screenshot

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment