₨0.00

No products in the cart.

₨0.00

No products in the cart.

How rewrite bootstrap colors

Home Forums Approach HTML Template How rewrite bootstrap colors

Tagged: ,

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #5246
    DrSHBukhariDrSHBukhari
    Keymaster

    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.

    #5406
    DrSHBukhariDrSHBukhari
    Keymaster

    `main(){
    runM();
    }

    #5407
    DrSHBukhariDrSHBukhari
    Keymaster
    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.