flutter 富文本

                        Text.rich(
                              TextSpan(
                                  text: "",
                                  style: TextStyle(color: Colors.white,),
                                  children: [
                                    TextSpan(
                                      text: '证件即将过期,为保障您的业务不受影响,请',
                                      style: new TextStyle(
                                        color: Colors.white,
                                      ),
                                    ),
                                    TextSpan(
                                      text: '及时更新',
                                      style: new TextStyle(
                                        color: Colors.red,
                                      ),
                                    ),
                                    TextSpan(
                                      text: '。',
                                      style: new TextStyle(
                                        color: Colors.white,
                                      ),
                                    ),
                                  ]
                              )
                          ),

你可能感兴趣的:(flutter 富文本)