Untitled

mail@pastecode.io avatar
unknown
dart
a month ago
3.3 kB
9
Indexable
Never
return Scaffold(
      backgroundColor: Color.fromARGB(255, 202, 233, 255),
      appBar: AppBar(
        shadowColor: Color.fromARGB(143, 39, 40, 68),
        toolbarHeight: 69.5,
        elevation: 6,
        backgroundColor: Color.fromARGB(255, 95, 168, 211),
        title: const Text(
          "Don'tMissIt",
          style: TextStyle(
            // shadows: [
            //   Shadow(
            //     color: Color.fromARGB(255, 142, 207, 250),
            //     blurRadius: 16,
            //   ),
            // ],
            color: Color.fromARGB(255, 38, 97, 134),
            fontWeight: FontWeight.bold,
          ),
        ),
        centerTitle: false,
        actions: [
          FloatingActionButton(
            elevation: 2,
            mini: true,
            backgroundColor: Color.fromARGB(255, 38, 97, 134),
            child: Icon(
              Icons.add,
              color: Color.fromARGB(255, 202, 233, 255),
            ),
            onPressed: () {},
          ),
          SizedBox(
            width: 12.5,
          )
        ],
      ),
      body: Stack(
        children: [
          DecoratedBox(
            decoration: const BoxDecoration(
              image: DecorationImage(
                image: AssetImage("assets/finallogo.gif"),
                fit: BoxFit.scaleDown,
              ),
            ),
            child: BackdropFilter(
              filter: ImageFilter.blur(sigmaX: 8, sigmaY: 8),
              child: Container(
                decoration: const BoxDecoration(
                  color: Color.fromARGB(25, 7, 33, 42),
                ),
              ),
            ),
          ),
          Column(
            children: [
              SizedBox(
                height: 50,
              ),
              ListView(
                shrinkWrap: true,
                children: const <Widget>[
                  ListTile(
                    leading: Icon(Icons.cake),
                    title: Text(
                        'Birthday! wordswordswordswordswordswordswordswordswords wordswordswords'),
                    subtitle: Text('3 Jun 2024'),
                    tileColor: Color.fromARGB(202, 169, 255, 222),
                  ),
                  SizedBox(
                    height: 50,
                  ),
                  ListTile(
                    leading: Icon(Icons.cake),
                    title: Text(
                        'Birthday! wordswordswordswordswordswordswordswordswords wordswordswords'),
                    subtitle: Text('3 Jun 2024'),
                    tileColor: Color.fromARGB(202, 169, 255, 222),
                  ),
                  SizedBox(
                    height: 50,
                  ),
                  ListTile(
                    leading: Icon(Icons.cake),
                    title: Text(
                        'Birthday! wordswordswordswordswordswordswordswordswords wordswordswords'),
                    subtitle: Text('3 Jun 2024'),
                    tileColor: Color.fromARGB(202, 169, 255, 222),
                  ),
                  SizedBox(
                    height: 50,
                  ),
                ],
              ),
            ],
          ),
        ],
      ),
    );
Leave a Comment