影片直播原始碼,Flutter 富文字 部分文字可以觸發點選

zhibo系統開發發表於2023-10-09

影片直播原始碼,Flutter 富文字 部分文字可以觸發點選

 Widget _buildBottomTip() {
    return Container(
      child: Text.rich(
        TextSpan(
          children: [
            TextSpan(
                text: "這是要顯示的文字",
                style: DHTextStyle.style(12, R.color.color_73767a)),
            TextSpan(
                text: "這是可以點選的文字",
                style: TextStyle(color: ColorStyles.color_app_theme_text),
                recognizer: TapGestureRecognizer()
                  ..onTap = () {
                    print('點選文字觸發方法');
                  })
          ],
        ),
      ),
    );
  }

以上就是 影片直播原始碼,Flutter 富文字 部分文字可以觸發點選,更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2987576/,如需轉載,請註明出處,否則將追究法律責任。

相關文章