Flutter Feature Prioritization Card with Impact Effort Quadrant Plot

A roadmap card that plots ten candidate features on an impact versus effort field, split into quick wins, big bets, fill ins and time sinks. Each dot is placed at a real pixel offset, so the quadrant a feature lands in is the recommendation.

Anılcan Çakır by Anılcan Çakır 35 views 0 stars 1 week ago Rev 1
Flutter Feature Prioritization Card with Impact Effort Quadrant Plot preview
main.dart
WDiv(
  className: 'flex flex-col w-full max-w-sm rounded-2xl border border-gray-200 dark:border-gray-800 bg-white dark:bg-gray-900 p-5 shadow-lg',
  children: [
    WDiv(
      className: 'flex flex-row items-center justify-between w-full',
      children: [
        WDiv(
          className: 'flex flex-col',
          children: [
            WText(
              'Roadmap Priorities',
              className: 'text-base font-bold text-gray-900 dark:text-white'
            ),
            WText(
              'Q3 planning, 10 candidates',
              className: 'text-xs text-gray-500 dark:text-gray-400'
            ),
          ],
        ),
        WDiv(
          className: 'rounded-full bg-emerald-50 dark:bg-emerald-500 px-3 py-1',
          child: WText(
            '3 quick wins',
            className: 'text-[10px] font-bold text-emerald-600 dark:text-white'
          ),
        ),
      ],
    ),
    WDiv(
      className: 'flex flex-row items-center w-full mt-4',
      child: WText(
        'Impact, higher is better',
        className: 'text-[9px] font-semibold tracking-wide text-gray-400 dark:text-gray-500'
      ),
    ),
    WDiv(
      className: 'relative w-[320px] h-[160px] rounded-xl border border-gray-200 dark:border-gray-700 bg-gray-50 dark:bg-gray-800 mt-1',
      children: [
        WDiv(
          className: 'absolute left-[159px] top-[0px] w-[2px] h-[160px] bg-gray-200 dark:bg-gray-700'
        ),
        WDiv(
          className: 'absolute left-[0px] top-[79px] w-[320px] h-[2px] bg-gray-200 dark:bg-gray-700'
        ),
        WDiv(
          className: 'absolute left-[8px] top-[5px]',
          child: WText(
            'QUICK WINS',
            className: 'text-[8px] font-bold tracking-wide text-emerald-500 dark:text-emerald-400'
          ),
        ),
        WDiv(
          className: 'absolute left-[258px] top-[5px]',
          child: WText(
            'BIG BETS',
            className: 'text-[8px] font-bold tracking-wide text-indigo-500 dark:text-indigo-400'
          ),
        ),
        WDiv(
          className: 'absolute left-[8px] top-[145px]',
          child: WText(
            'FILL INS',
            className: 'text-[8px] font-bold tracking-wide text-slate-400 dark:text-slate-500'
          ),
        ),
        WDiv(
          className: 'absolute left-[248px] top-[145px]',
          child: WText(
            'TIME SINKS',
            className: 'text-[8px] font-bold tracking-wide text-rose-400 dark:text-rose-400'
          ),
        ),
        WDiv(
          className: 'absolute left-[58px] top-[31px] w-[12px] h-[12px] rounded-full bg-emerald-500 dark:bg-emerald-400'
        ),
        WDiv(
          className: 'absolute left-[90px] top-[53px] w-[12px] h-[12px] rounded-full bg-emerald-500 dark:bg-emerald-400'
        ),
        WDiv(
          className: 'absolute left-[42px] top-[64px] w-[12px] h-[12px] rounded-full bg-emerald-500 dark:bg-emerald-400'
        ),
        WDiv(
          className: 'absolute left-[218px] top-[24px] w-[12px] h-[12px] rounded-full bg-indigo-500 dark:bg-indigo-400'
        ),
        WDiv(
          className: 'absolute left-[186px] top-[46px] w-[12px] h-[12px] rounded-full bg-indigo-500 dark:bg-indigo-400'
        ),
        WDiv(
          className: 'absolute left-[266px] top-[38px] w-[12px] h-[12px] rounded-full bg-indigo-500 dark:bg-indigo-400'
        ),
        WDiv(
          className: 'absolute left-[42px] top-[110px] w-[12px] h-[12px] rounded-full bg-slate-400 dark:bg-slate-500'
        ),
        WDiv(
          className: 'absolute left-[90px] top-[121px] w-[12px] h-[12px] rounded-full bg-slate-400 dark:bg-slate-500'
        ),
        WDiv(
          className: 'absolute left-[234px] top-[102px] w-[12px] h-[12px] rounded-full bg-rose-500 dark:bg-rose-400'
        ),
        WDiv(
          className: 'absolute left-[272px] top-[124px] w-[12px] h-[12px] rounded-full bg-rose-500 dark:bg-rose-400'
        ),
      ],
    ),
    WDiv(
      className: 'flex flex-row items-center justify-between w-[320px] mt-1',
      children: [
        WText(
          'Lower effort',
          className: 'text-[9px] font-semibold tracking-wide text-gray-400 dark:text-gray-500'
        ),
        WText(
          'Higher effort',
          className: 'text-[9px] font-semibold tracking-wide text-gray-400 dark:text-gray-500'
        ),
      ],
    ),
    WDiv(
      className: 'w-full border-t border-gray-200 dark:border-gray-700 mt-4'
    ),
    WDiv(
      className: 'flex flex-row items-center w-full mt-3',
      children: [
        WDiv(
          className: 'w-[10px] h-[10px] rounded-full bg-emerald-500 dark:bg-emerald-400'
        ),
        WDiv(
          className: 'flex flex-col ml-3',
          children: [
            WText(
              'Ship first: Dark mode',
              className: 'text-[11px] font-bold text-gray-900 dark:text-white'
            ),
            WText(
              '2 sprints of work, reaches 78% of accounts',
              className: 'text-[10px] text-gray-500 dark:text-gray-400'
            ),
          ],
        ),
      ],
    ),
    WDiv(
      className: 'flex flex-row items-center w-full mt-2',
      children: [
        WDiv(
          className: 'w-[10px] h-[10px] rounded-full bg-rose-500 dark:bg-rose-400'
        ),
        WDiv(
          className: 'flex flex-col ml-3',
          children: [
            WText(
              'Park it: 3D charts',
              className: 'text-[11px] font-bold text-gray-900 dark:text-white'
            ),
            WText(
              '9 sprints of work, requested by 4 accounts',
              className: 'text-[10px] text-gray-500 dark:text-gray-400'
            ),
          ],
        ),
      ],
    ),
    WDiv(
      className: 'w-full mt-4',
      child: WButton(
        className: 'w-full rounded-xl bg-gray-900 dark:bg-white py-3 flex flex-row items-center justify-center',
        child: WText(
          'Open roadmap board',
          className: 'text-sm font-bold text-white dark:text-gray-900'
        ),
      ),
    ),
  ],
)
Stats
Views
35
Stars
0
Revisions
1
Size
6,098 chars
Created
Aug 12, 2026