我想用bottomNavigationBar的聊天图标在最右边和最顶部的堆栈中显示红色计数器,但我只得到这个;
这是我的代码;
BottomNavigationBarItem(
icon: Stack(children: [
Icon(Icons.chat),
Positioned(
top: -3,
right: -3,
child: Container(
width: 16,
height: 16,
decoration: BoxDecoration(
shape: BoxShape.circle,
color: Colors.red),
child: Center(
child: Text(
'1'
style: TextStyle(
fontSize: 13,
color: Colors.white,
),
),
),
)
]);
),
label: '채팅'),
如何在堆栈中最右侧和最顶部显示红色计数器?