Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 1015 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 1015 Bytes

Arbus.Mobile.Essentials

Essential tools for building mobile apps

Build Status

How top use iOS.Essentials

SfSymbol:

public static SfSymbol ChevronRight => new("chevron.right");
public static SfSymbol ChevronLeft => new("chevron.left");

ChevronRight.ToUiImage(UIImageSymbolWeight.Medium);

_imageView = new UIImageView()
    .Image(SfSymbols.ChevronRight); //implicit operator

DiffableDataSource:

DiffableDataSourceSnapshot and DataSourceIdentifierType

DiffableDataSourceSnapshot<TSection, TItem> snapshot = new();
snapshot.AppendSections(Sections);
snapshot.AppendItems(Items, section);

Downloads

The latest stable releases are available on NuGet: