-1

I tried several options to put the background, it did not work. This is one page, only search will be all. You can advise in setting the background. Code on github

Flutt Dev
  • 47
  • 1
  • 5
  • 1
    Does this answer your question? [Flutter SDK Set Background image](https://stackoverflow.com/questions/44179889/flutter-sdk-set-background-image) – Abdulaziz Yesuf Apr 26 '20 at 09:23

1 Answers1

0

you can use the stack widget.

Stack(
        children: <Widget>[
          Container(
            decoration: BoxDecoration(
              image: DecorationImage(
                  image: AssetImage(
                    'assets/yourbackgroundimage.jpg',
                  ),
                  fit: BoxFit.cover),
            ),
            child: BackdropFilter(
              filter: ImageFilter.blur(sigmaX: 6.0, sigmaY: 6.0),
              child: Container(
                decoration: BoxDecoration(
                  color: Colors.white.withOpacity(0.0),
                ),
              ),
            ),
          ),
          Scaffold(....)
xion
  • 1,209
  • 11
  • 17