Skip to content

Instantly share code, notes, and snippets.

@rohanjsh
Last active April 19, 2021 15:43
Show Gist options
  • Save rohanjsh/24d8067cd0b87ad05ffd47e4977f6edb to your computer and use it in GitHub Desktop.
Save rohanjsh/24d8067cd0b87ad05ffd47e4977f6edb to your computer and use it in GitHub Desktop.
//main.dart
import 'package:flutter/material.dart';
void main() {
runApp(App());
}
class App extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Demo for swatch',
theme: ThemeData(
primarySwatch: Colors.black, //here is where the error resides
),
home: YourFirstPage(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment