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