// SPDX-FileCopyrightText: 2022 Jinsong, Zhu // // SPDX-License-Identifier: MIT-0 import 'package:flutter_bloc/flutter_bloc.dart'; class BottomNavBarCubit extends Cubit { BottomNavBarCubit() : super(0); void selectTab(int index) => emit(index); }