skip to Main Content

Flutter change padding area background color

I have ListTile inside padding. I need to change the padding area color. How can I change it? SliverList( delegate: SliverChildBuilderDelegate( (context, index) => Card( elevation: 1, color: MyColors.white, margin: const EdgeInsets.symmetric(vertical: 0), child: Padding( padding: const EdgeInsets.all(8.0), child: ListTile(…

VIEW QUESTION

Html – Why isn't padding working in my Bootstrap 5.3 page?

Why is pe-5 not working? <head> <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous"> </head> <body> <header class="bg-info"> <div class="row text-white"> <div class="col-md-6 p-4 pe-5 "> <h2 class="">Adhnan M Y</h2> </div> <div class="col-md-6"> </div> </div> </header> </body>

VIEW QUESTION

Remove row padding on flutter

Hello im new at mobile mobile developers, and here i got confused by the padding that appears between image and text on my code. mostly i try the code that explained in youtube and the internet and for this problem…

VIEW QUESTION

Html – image and padding responsive

can someone help to fix when i do responsive page the padding on image change from this before to this responsive .service-item img { max-width: 100%; margin-bottom: 20px; border-radius: 10px; border-bottom-left-radius: 0%; border-bottom-right-radius: 0%; } how to fix that so…

VIEW QUESTION
Back To Top
Search