handleTabClick method
Implementation
void handleTabClick(int index) {
if (index != activeTabIndex) {
setState(() {
activeTabIndex = index;
});
} else {
TencentCloudChatStickerUtils.log("activeIndex is same. do nothing");
}
}
void handleTabClick(int index) {
if (index != activeTabIndex) {
setState(() {
activeTabIndex = index;
});
} else {
TencentCloudChatStickerUtils.log("activeIndex is same. do nothing");
}
}