KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
XamFluentUI
★ 26
Open GitHub ↗
Fluent UI API for Xamarin Forms
Download README (.md)
Explore Similar Repositories
mcdonalds-api-wrapper
:
Using python to order mcdonalds from the command line
electron-startkit
:
base electron-vue. An electron out-of-the-box desktop startkit
5G_NR_Simulations
:
5G New Radio Simulations written in Python with descriptive Plots
computer-vision-tutorial
:
Repository to help you get started with computer vision
LumiaUSBC
:
USB-C controller driver for the Nokia Lumia 950 and 950XL
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
XamFluentUI
?
Download (.md)
# XamFluentUI Fluent UI API para Xamarin Forms Con este conjunto de métodos de extensión, puede crear vistas para sus aplicaciones con Xamarin Forms utilizando C#. Para ver la diferencia en la creación con XAML, puede ver cómo se ve el MainView desde el ejemplo: ```C# public class MainView : ContentPage { public MainView() { Content = new Grid() .AddContent( new StackLayout() .Alignment(LayoutOptions.Center, LayoutOptions.Center) .AddContent( new Label().TextAlignment(TextAlignment.Center, TextAlignment.Center) .Text("Hello Xamarin Fluent", Color.Gray))); } } ``` Puedes utilizar diferente modos para añadir vistas a tus "Layouts". De este modo el código se identará automaticamente en Visual Studio y favorecerá la legibilidad. Puedes utilizar una función o añadir vistas directamente: ```C# var demo = new Grid().AddContent(() => new List<View> { //Aquí las vistas }); var demo = new Grid().AddContent(new View[] { //Aquí las vistas }); var demo = new Grid().AddContent( //Aquí las vistas ); ```