DEL: Loading indicator not needed as data loads instantly

This commit is contained in:
Marcos Rodriguez Vélez 2021-09-23 12:53:46 -04:00 committed by Overtorment
parent cfb018be33
commit a6ee7767dc
2 changed files with 0 additions and 9 deletions

View file

@ -13,7 +13,6 @@ import Foundation
class InterfaceController: WKInterfaceController {
@IBOutlet weak var walletsTable: WKInterfaceTable!
@IBOutlet weak var loadingIndicatorGroup: WKInterfaceGroup!
@IBOutlet weak var noWalletsAvailableLabel: WKInterfaceLabel!
override func willActivate() {
@ -21,7 +20,6 @@ class InterfaceController: WKInterfaceController {
super.willActivate()
if (WatchDataSource.shared.wallets.isEmpty) {
loadingIndicatorGroup.setHidden(true)
noWalletsAvailableLabel.setHidden(false)
} else {
processWalletsTable()

View file

@ -37,16 +37,9 @@
</tableRow>
</items>
</table>
<group width="1" alignment="left" verticalAlignment="center" layout="vertical" id="1Db-mZ-yxl">
<items>
<imageView width="60" height="60" alignment="center" image="loadingIndicator" contentMode="scaleAspectFit" id="dLA-pP-GUU"/>
<label alignment="center" text="Loading wallets..." id="hCG-Eg-bck"/>
</items>
</group>
<label alignment="center" verticalAlignment="center" hidden="YES" text="No wallets available. Please, add one by opening BlueWallet on your iPhone." textAlignment="center" numberOfLines="0" id="I2I-8t-hp3"/>
</items>
<connections>
<outlet property="loadingIndicatorGroup" destination="1Db-mZ-yxl" id="XPX-Y8-dv0"/>
<outlet property="noWalletsAvailableLabel" destination="I2I-8t-hp3" id="c4O-Mg-3ps"/>
<outlet property="walletsTable" destination="jUH-JS-ccp" id="ONe-Gg-EJn"/>
</connections>