Skip to content

Instantly share code, notes, and snippets.

@bierbaumtim
Last active May 10, 2019 18:55
Show Gist options
  • Save bierbaumtim/a352f2f498a7ec2bd5ae94e0a0205b12 to your computer and use it in GitHub Desktop.
Save bierbaumtim/a352f2f498a7ec2bd5ae94e0a0205b12 to your computer and use it in GitHub Desktop.
void main(){
runApp(MyApp());
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<Deskmodder> {
@override
Widget build(BuildContext context) {
return Material(
child: CupertinoApp(
home: Center(
child: ListTile(
leading: Icon(CupertinoIcons.add),
title: Text('Text is Black'),
),
),
theme: CupertineThemeData(
brightness: Brightness.dark,
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment