Showing
1 changed file
with
3 additions
and
2 deletions
... | @@ -82,8 +82,9 @@ class MembershipPageState extends BaseState<MembershipPage> with WidgetsBindingO | ... | @@ -82,8 +82,9 @@ class MembershipPageState extends BaseState<MembershipPage> with WidgetsBindingO |
82 | hideLoading(); | 82 | hideLoading(); |
83 | } | 83 | } |
84 | 84 | ||
85 | - ///写死背景加载会更快 | 85 | + ///加载背景 |
86 | - var url = "https://api.parlando.ink/storage/images/274d864a62d277b2a29c4db39f92d591.png"; | 86 | + MembershipData? mb = apiResponse?.data; |
87 | + var url = mb?.bgImages ?? ""; | ||
87 | return Scaffold( | 88 | return Scaffold( |
88 | body: Container( | 89 | body: Container( |
89 | decoration: BoxDecoration( | 90 | decoration: BoxDecoration( | ... | ... |
-
Please register or login to post a comment