showRankList static method
直播间榜单 anchorId:主播ID
Implementation
static showRankList(BuildContext context, String anchorId) {
JJDialogController(
barrierColor: Colors.transparent,
child: JJRankList(
anchorId: anchorId,
height: DoubleValue.screenHeight / 2,
clipBehavior: Clip.antiAlias,
decoration: BoxDecoration(color: Colors.black.withAlpha(180), borderRadius:const BorderRadius.only(topLeft: Radius.circular(24), topRight: Radius.circular(24))),
onTap: () {
Navigator.pop(context);
},
),
).show(context);
}