image replace & splash screen
This commit is contained in:
@ -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>
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user