image replace & splash screen

This commit is contained in:
2022-03-01 15:15:45 +08:00
parent 5b954ac441
commit 82af171460
194 changed files with 1323 additions and 1319 deletions

View File

@ -43,7 +43,7 @@
Title="{r:Text Balance}"
Text="{Binding Balance, Mode=TwoWay}"
Placeholder="{r:Text BalancePlaceholder}"/>
<ui:OptionTextCell Height="44" Icon="dollar.png"
<ui:OptionTextCell Height="44" Icon="yuan.png"
Title="{r:Text Currency}"
Detail="{r:Text CNY}"/>
</TableSection>

View File

@ -110,10 +110,10 @@ namespace Billing.Views
{
var source = new List<SelectItem<AccountCategory>>
{
new() { Icon = "sackdollar", Value = AccountCategory.Cash, Name = Resource.Cash },
new() { Icon = "dollar", Value = AccountCategory.Cash, Name = Resource.Cash },
new() { Icon = "creditcard", Value = AccountCategory.CreditCard, Name = Resource.CreditCard },
new() { Icon = "debitcard", Value = AccountCategory.DebitCard, Name = Resource.DebitCard },
new() { Icon = "coins", Value = AccountCategory.ElecAccount, Name = Resource.ElecAccount }
new() { Icon = "online", Value = AccountCategory.ElecAccount, Name = Resource.ElecAccount }
};
var page = new ItemSelectPage<SelectItem<AccountCategory>>(source);
page.ItemTapped += Category_ItemTapped;