Hello,
I need to redefine a color palette of the theme.
What is the best practice to do that, I want void broken your design. Please, share the screenshot.
How rewrite bootstrap colors
-
import 'package:flutter/material.dart'; import 'package:organic_food_app/constants/constants.dart'; import 'package:organic_food_app/screens/sign_in/sign_in_screen.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'Organic Food App', debugShowCheckedModeBanner: false, theme: ThemeData( primarySwatch: Colors.blue, visualDensity: VisualDensity.adaptivePlatformDensity, scaffoldBackgroundColor: white ), home: SignInScreen(), ); } }
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.