Как добавить значки для элементов меню ящика во флаттере? - PullRequest
0 голосов
/ 06 января 2019

Я хочу добавить значки (показывающие, что доступно новое содержимое) в Drawer во Flutter. Я использую ListTile для представления пунктов меню внутри виджета Drawer.

enter image description here

1 Ответ

0 голосов
/ 06 января 2019
ListTile(
  title: Text("I'm a list tile"),
  // this trailing widget can be the badge.
  trailing: Container(
    height: 14,
    width: 14,
    decoration: BoxDecoration(
      color: Colors.red,
      borderRadius: BorderRadius.all(Radius.circular(100)),
    ),
  ),
)

enter image description here

...