A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add loading messages

+17 -1
+17 -1
src/Applications/UI/View.elm
··· 126 126 in 127 127 case ( model.isLoading, model.authentication ) of 128 128 ( True, _ ) -> 129 - content { opts | justifyCenter = True } [ loadingAnimation ] 129 + content 130 + { opts | justifyCenter = True } 131 + [ loadingAnimation 132 + , Html.div 133 + [ C.italic 134 + , C.mt_5 135 + , C.text_white 136 + , C.text_opacity_30 137 + ] 138 + [ case model.authentication of 139 + Authentication.Authenticated _ -> 140 + Html.text "Loading your data" 141 + 142 + _ -> 143 + Html.text "Transmitting particles" 144 + ] 145 + ] 130 146 131 147 ( False, Authentication.Authenticated _ ) -> 132 148 content opts (defaultScreen model)