Haticenurcoskunn / Vertical-Listtile

Package for Vertical Listtile

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Developer Challenge

When you want to column on a container, you can add 3 widgets of your choice similar to a vertical Listtile.

Usage

First, add the vertical_listtile package to your pubspec dependencies. To import vertical_listtile:

import 'package:vertical_listtile/vertical_listtile.dart';

To use vertical_listtile:

  return  Scaffold(
        body: VerticalListtile(
        backgroundcolor: Colors.grey.shade300,
        borderRadius: 20,
        containerHeight: 350,
        containerWidth: 200,
        startWidget: myStartWidget(),
        centerWidget: myCenterWidget(),
        finishWidget: myFinishWidget(),
      ),
    );

About

Package for Vertical Listtile

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Dart 100.0%