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(),
      ),
    );

Libraries

vertical_listtile