skip to Main Content

Css – Main Dart file is not loading Flutter web

I am creating flutter web app where i have define some loading splash screen by doing some html and css in index.html file you can see here: <!DOCTYPE html> <html> <head> <base href="$FLUTTER_BASE_HREF"> <meta charset="UTF-8"> <meta content="IE=Edge" http-equiv="X-UA-Compatible"> <meta name="description"…

VIEW QUESTION

Html – I am trying to use Box-Shadow property it is working fine but when i use the display as flex it will not appear

HTML CODE --- <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Gallary Project</title> <link rel="stylesheet" href="style.css"> </head> <body> <div class="wrapper"> <div class="container"> <h1>My gallary</h1> <div class="gallary"> <figure class="card"> <img src="ig/assets/image1.jpg" alt=""> <figcaption>Image1</figcaption> </figure> <figure class="card"> <img src="ig/assets/image2.jpeg"…

VIEW QUESTION
Back To Top
Search