Skip to content

Instantly share code, notes, and snippets.

@rpsnaik
Created October 8, 2019 18:59
Show Gist options
  • Save rpsnaik/e41bbce776950985d439c5e68a2ebfcd to your computer and use it in GitHub Desktop.
Save rpsnaik/e41bbce776950985d439c5e68a2ebfcd to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
import 'package:spotify_clone/components/auth.dart';
void main(){
runApp(MaterialApp(
title: 'Spotify Clone',
theme: ThemeData(
fontFamily: 'Proxima Nova',
brightness: Brightness.dark,
primaryColor: Colors.lightBlue[800],
accentColor: Colors.cyan[600],
),
debugShowCheckedModeBanner: false,
home: SplashScreen(),
));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment