BY Akash Kava20 Oct 2021 Edit
Version update 1.6.297

Following improvements are shipped in this update.

Improvements

1. Calling V8 Method Speed Improvement

We have replaced heap allocation for calling function/methods on JavaScript by using stack allocation.

2. Improved OkHttp Calls

We have replaced OkHttpCall with inbuilt async Task, which reduced heap allocation for every single http call.

3. Added background for DuoToneFontButton

We have added background Fill color and corner radius to give button kind of look for DuoToneFontButton.

New Control

AtomRadioButtonList

We have added new control AtomRadioButtonList which is easy to bind and you can track the selected items via binding.

<WA.AtomRadioButtonList
    selectedItem={Bind.twoWays(() =>
        this.viewModel.model.emailNotificationSetting, null, {
        fromSource: (v) => emailNotificationSetting.find((i) => i.value === v),
        fromTarget: (v) => v.value
    })}
    itemsSource={emailNotificationSetting}>
    <WA.AtomRadioButtonList.itemTemplate>
    <XF.DataTemplate>
        <XF.Label text={Bind.oneWay((x) => x.data.label)}/>
    </XF.DataTemplate>
    </WA.AtomRadioButtonList.itemTemplate>
</WA.AtomRadioButtonList>

Atom Radio Button List

BY Akash Kava
LikeCommentSave
LikeCommentSaveShare
0
Categories
General
YantraJS
Developer Guides
Tutorials
Web Atoms Updates

POPULAR POSTS
17 Mar 2021
LATEST ACTIVITY
Simmi Kava
commented this post.
Simmi Kava
liked this post.
Show more
ARCHIVES
2024
2023
2022
2021
TAGS
javascript (56)
developer (25)
javascriptdeveloper (16)
Xamarin.Forms (16)
Html (14)
typescript (12)
webatoms (12)
xamarin (11)
coding (10)
web-atoms (10)
arrays (9)
android (8)
javascript-developer (8)
csharp (7)
dotnet (7)
css (6)
update (6)
dotnet-standard (5)
function (5)
iOS (5)
methods (4)




Web Atoms: JSX (TSX + TypeScript) for Xamarin.Forms, Hot Reload Your App in Production Environment

PlaygroundSamples Repository