Q:

How rewrite bootstrap colors

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.

rc14 Approach HTML Template

All Replies

Upvote
Up
0
Down
Downvote
::

`main(){
runM();
}

Upvote
Up
0
Down
Downvote
::
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(),
    );
  }
}

Viser 2 svar - 1 til 2 (av totalt 2)

  • You must be logged in to reply to this topic.