################################## ATENÇÃO!!! ##################################
Deve-se adicionar este trecho de código na MainActivity do projeto Android:
using Jarvis.Components.Xamarin.Forms.Android;
using Rg.Plugins.Popup;
protected override void OnCreate(Bundle bundle)
{
TabLayoutResource = Resource.Layout.Tabbar;
ToolbarResource = Resource.Layout.Toolbar;
JarvisService.Init(this, bundle);
base.OnCreate(bundle);
global::Xamarin.Forms.Forms.Init(this, bundle);
LoadApplication(new App());
}
public override void OnBackPressed()
{
Popup.SendBackPressed(base.OnBackPressed);
}
- FormsAppCompatActivity
- Android Support Libraries 28.0.0 or greater
- Target Android framework (v9.0 presently)
- Minimum Android Version 5.0 (API 21) or greater
Deve-se adicionar este trecho de código na AppDelegate do projeto iOS:
using Jarvis.Components.Xamarin.Forms.iOS;
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
JarvisService.Init();
global::Xamarin.Forms.Forms.Init();
LoadApplication(new App());
return base.FinishedLaunching(app, options);
}
################################################################################
Biblioteca de componentes para Xamarin Forms.
Views:
- AccordionView;
- ExpandableView;
- LoginView;
- CreditCardView;
- NoBounceScrollView;
- LoadingView;
- ScrollLoadingView;
- GridView;
- ScrollGridView;
- ScrollGridRefreshView;
- RepeaterView;
- ScrollRepeaterView;
- ScrollRepeaterRefreshView;
- SelectableListView;
- InfiniteListView;
- CardView;
- Editor;
- Entry;
- EntryIcon;
- StyleEntry;
- Picker;
- AutoComplete;
- LinkLabel;
- RatingBar;
- CheckBox;
- RadioButton;
- RadioGroup;
- FloatingActionButton;
- ProgressBar;
MaterialViews:
- MaterialButton;
- MaterialDatePicker;
- MaterialPicker;
- MaterialEditor;
- MaterialEntry;
FormViews:
- FormEntry;
- FormEditor;
- FormAutoComplete;
- FormSearch;
Modals:
Pages:
- LoadingPage;
- ParallaxPage;
- SlidingUpPanelPage;
- TransparentNavigationPage;
Popups:
- PopupLogin;
- PopupRating;
- PopupEntry;
Utils:
- BaseNotify;
- PopAllTo;
- Image ToJPEG;
- Image ToPNG;
- InverseBooleanConverter;
################################################################################