0% found this document useful (0 votes)
19 views

Pappsclass

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views

Pappsclass

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

If(Value(txtSal.

Text)>50000,"A",
If(Value(txtSal.Text)>30000 && Value(txtSal.Text)<=50000,"B",
If(Value(txtSal.Text)>10000 && Value(txtSal.Text)<=30000,"C",
"D")))

Switch(true,Value(TextInput3.Text)>50,true,false)

Switch(txtGrade.Text,"90","A","80","B","70","C","D")

Switch(Dropdown1.SelectedText.Value,"Sunday","1","Monday","2","Tuesday","3","Wednes
day","3","Thursday","4","Friday","6","Saturday","7")

1. Global Variables
syntax: Set(varname,value)

2. Context Variable
syntax: UpdateContext({varname:value})

3. Collection
syntax: Collect(name,[{key1: value1, key2: value2},{key1: value3, key2:
value4}])

Expense Tracker:

1. Home Screen
2. Overview Screen
3. Expenses Screen

Home Screen : Logo/Image --> navigates to Overview Screen

Overview Screen : Gallery to display all expenses, TotalBudget of the month(Text


Label), Total Spent(is sum of the amount) (text label), Balance(budget-amount
spent) (text lable)

Expenses Screen : form where you update the expenses based on the category, button
to collect your expenses

form--> Expense Name = textInput


Amount = text Input
Category = Dropdown
Total Budget = text input
button = to collect the expenses

You might also like