Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arbusbiz/arbus.mobile.essentials
Essential tools for building mobile apps
https://github.com/arbusbiz/arbus.mobile.essentials
android autolayout dotnet fluentlayout ios mobile xamarin
Last synced: about 2 months ago
JSON representation
Essential tools for building mobile apps
- Host: GitHub
- URL: https://github.com/arbusbiz/arbus.mobile.essentials
- Owner: ArbusBiz
- License: ms-pl
- Created: 2022-11-03T13:24:10.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-14T12:48:09.000Z (about 2 months ago)
- Last Synced: 2024-11-14T13:26:24.429Z (about 2 months ago)
- Topics: android, autolayout, dotnet, fluentlayout, ios, mobile, xamarin
- Language: C#
- Homepage:
- Size: 52.7 KB
- Stars: 0
- Watchers: 0
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Arbus.Mobile.Essentials
Essential tools for building mobile apps[![Build Status](https://dev.azure.com/arbus/GitHub%20Pipelines/_apis/build/status/Arbus.Mobile.Essentials?branchName=main)](https://dev.azure.com/arbus/GitHub%20Pipelines/_build/latest?definitionId=46&branchName=main)
## 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 snapshot = new();
snapshot.AppendSections(Sections);
snapshot.AppendItems(Items, section);
```## Downloads
The latest stable releases are available on NuGet:
- [Arbus.iOS.Essentials](https://www.nuget.org/packages/Arbus.iOS.Essentials)
- Arbus.Android.Essentials (None for now)