|
|
@@ -1044,6 +1044,38 @@ class StorePage extends BasePage<StoreController> {
|
|
|
);
|
|
|
}
|
|
|
|
|
|
+ /// 恢复订阅
|
|
|
+ Widget _buildRecoverSubscribe() {
|
|
|
+ return Container(
|
|
|
+ margin: EdgeInsets.only(left: 16.w, top: 8.h, right: 16.w),
|
|
|
+ child: Row(
|
|
|
+ children: [
|
|
|
+ Text(
|
|
|
+ "⚠️ 订阅未生效?点此试试",
|
|
|
+ style: TextStyle(
|
|
|
+ color: Color(0xFF666355),
|
|
|
+ fontSize: 13.sp,
|
|
|
+ fontWeight: FontWeight.w400,
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ GestureDetector(
|
|
|
+ onTap: () {
|
|
|
+ // 恢复订阅
|
|
|
+ },
|
|
|
+ child: Text(
|
|
|
+ " 恢复订阅>",
|
|
|
+ style: TextStyle(
|
|
|
+ color: Color(0xFF479DF7),
|
|
|
+ fontSize: 13.sp,
|
|
|
+ fontWeight: FontWeight.w400,
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ ],
|
|
|
+ ),
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
Widget _buildBuyButtonCard() {
|
|
|
return Container(
|
|
|
width: 360.w,
|