Flutter EV Charging Status Card with Battery Progress

An EV charging status card showing battery percentage, a gradient progress bar, energy added, time remaining, and session cost, with a stop-charging action. Wind-styled with dark-mode support.

Anılcan Çakır by Anılcan Çakır 13 views 0 stars 3 days ago Rev 1
Flutter EV Charging Status Card with Battery Progress preview
main.dart
WDiv(
  className: 'mx-auto max-w-sm flex flex-col gap-5 rounded-3xl p-6 bg-white border border-gray-100 shadow-xl dark:bg-gray-900 dark:border-gray-800',
  children: [
    WDiv(
      className: 'flex flex-row items-center justify-between w-full',
      children: [
        WDiv(
          className: 'flex flex-row items-center gap-3',
          children: [
            WDiv(
              className: 'w-11 h-11 rounded-2xl bg-emerald-50 dark:bg-emerald-500/15 flex flex-row items-center justify-center',
              child: WIcon(
                Icons.directions_car,
                className: 'text-xl text-emerald-500 dark:text-emerald-400'
              ),
            ),
            WDiv(
              className: 'flex flex-col',
              children: [
                WText(
                  'Model Y',
                  className: 'text-sm font-bold text-gray-900 dark:text-white'
                ),
                WText(
                  'Garage charger',
                  className: 'text-xs text-gray-500 dark:text-gray-400'
                ),
              ],
            ),
          ],
        ),
        WDiv(
          className: 'flex flex-row items-center gap-1.5 rounded-full px-3 py-1 bg-emerald-50 dark:bg-emerald-500/15',
          children: [
            WIcon(
              Icons.bolt,
              className: 'text-xs text-emerald-500 dark:text-emerald-400'
            ),
            WText(
              'Charging',
              className: 'text-xs font-semibold text-emerald-600 dark:text-emerald-400'
            ),
          ],
        ),
      ],
    ),
    WDiv(
      className: 'flex flex-row items-end gap-1 w-full',
      children: [
        WText(
          '72',
          className: 'text-5xl font-extrabold text-gray-900 dark:text-white'
        ),
        WText(
          '%',
          className: 'text-2xl font-bold text-gray-400 dark:text-gray-500'
        ),
      ],
    ),
    WDiv(
      className: 'flex flex-row items-center w-full h-3 rounded-full bg-gray-100 dark:bg-gray-800',
      child: WDiv(
        className: 'h-3 w-[242px] rounded-full bg-gradient-to-r from-emerald-400 to-green-500',
        child: WSpacer(
          className: 'w-[242px] h-3'
        ),
      ),
    ),
    WDiv(
      className: 'flex flex-row items-center justify-between w-full',
      children: [
        WDiv(
          className: 'flex flex-col gap-0.5',
          children: [
            WText(
              'Added',
              className: 'text-xs text-gray-500 dark:text-gray-400'
            ),
            WText(
              '34 kWh',
              className: 'text-sm font-bold text-gray-900 dark:text-white'
            ),
          ],
        ),
        WDiv(
          className: 'flex flex-col gap-0.5',
          children: [
            WText(
              'Time left',
              className: 'text-xs text-gray-500 dark:text-gray-400'
            ),
            WText(
              '42 min',
              className: 'text-sm font-bold text-gray-900 dark:text-white'
            ),
          ],
        ),
        WDiv(
          className: 'flex flex-col gap-0.5',
          children: [
            WText(
              'Cost',
              className: 'text-xs text-gray-500 dark:text-gray-400'
            ),
            WText(
              '$6.80',
              className: 'text-sm font-bold text-gray-900 dark:text-white'
            ),
          ],
        ),
      ],
    ),
    WButton(
      className: 'w-full rounded-2xl py-3.5 bg-gray-900 dark:bg-white flex flex-row items-center justify-center',
      child: WText(
        'Stop charging',
        className: 'text-sm font-bold text-white dark:text-gray-900'
      ),
    ),
  ],
)
Stats
Views
13
Stars
0
Revisions
1
Size
3,720 chars
Created
Jul 7, 2026