viewTips method

Widget viewTips()

Implementation

Widget viewTips() {
  if (_arguments.live.state == NERoomLiveState.init) {
    return Text(
        liveUids.isNotEmpty
            ? '${Strings.livePickerCount}${liveUids.length}${Strings.livePickerCountPrefix}'
            : '',
        style: TextStyle(fontSize: 14, color: UIColors.color_999999));
  } else if (viewChange && _arguments.live.state != NERoomLiveState.ended) {
    return Text(Strings.liveViewSettingChange,
        style: TextStyle(fontSize: 14, color: UIColors.colorEB352B));
  }
  return Container();
}