simple_list_tile 0.0.1 copy "simple_list_tile: ^0.0.1" to clipboard
simple_list_tile: ^0.0.1 copied to clipboard

outdated

A fully customisable simple list tile with gradients.

custom_line_indicator_bottom_navbar #

A fully customizable bottom navigation bar with line indicators and gradient.

alert2

Usage without gradient:

        SimpleListTile(
          title: Text(
            'Title',
            style: TextStyle(
              color: Colors.white,
              fontWeight: FontWeight.bold,
              fontSize: 20,
            ),
          ),
          subtitle: Text(
            'Subtitle',
            style: TextStyle(
              color: Colors.white,
            ),
          ),
          trailing: Icon(
            Icons.arrow_forward_ios,
            color: Colors.white,
          ),
          leading: Icon(
            Icons.phone_android,
            color: Colors.blue,
          ),
          borderRadius: BorderRadius.circular(20),
          tileColor: Colors.grey[300]!,
          circleColor: Colors.grey[100]!,
          circleDiameter: 200,
          gradient: LinearGradient(
            colors: [Colors.red, Colors.yellow],
          ),
        ),
        SizedBox(
          height: 20,
        ),
        SimpleListTile(
          title: Text(
            'Title',
            style: TextStyle(
              color: Colors.black,
              fontWeight: FontWeight.bold,
              fontSize: 20,
            ),
          ),
          subtitle: Text(
            'Subtitle',
            style: TextStyle(
              color: Colors.black,
            ),
          ),
          trailing: Icon(Icons.arrow_forward_ios),
          leading: Image.asset(
            'assets/guided_faq.png',
          ),
          borderRadius: BorderRadius.circular(20),
          tileColor: Colors.white,
          circleColor: Colors.blue[800]!,
          circleDiameter: 200,
        ),

Usage with gradient :

            SimpleListTile(
          title: Text(
            'Title',
            style: TextStyle(
              color: Colors.white,
              fontWeight: FontWeight.bold,
              fontSize: 20,
            ),
          ),
          subtitle: Text(
            'Subtitle',
            style: TextStyle(
              color: Colors.white,
            ),
          ),
          trailing: Icon(
            Icons.arrow_forward_ios,
            color: Colors.white,
          ),
          leading: Icon(
            Icons.phone_android,
            color: Colors.blue,
          ),
          borderRadius: BorderRadius.circular(20),
          tileColor: Colors.grey[300]!,
          circleColor: Colors.grey[100]!,
          circleDiameter: 200,
          gradient: LinearGradient(
            colors: [Colors.blue, Colors.green],
          ),
        ),
2
likes
0
points
37
downloads

Publisher

unverified uploader

Weekly Downloads

A fully customisable simple list tile with gradients.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on simple_list_tile