How Can I add lazy loading in blazor hybrid project? - lazy-loading

i build Blazor hybrid project, but i found that there is late in the first loading ,how can implement the lazy loading in Blazor hybrid project , Helpppp!!!

Related

Teams App development - Fluent UI React Components v9 vs Fluent UI React Northstar

According to this https://github.com/microsoft/fluentui repository, there are many UI library from fluent UI.
#fluentui/react-northstar library is used to develop Teams App development. but I have no idea why another similar Fluent UI React Components v9 library is there.
What library is recommended for Teams app development ?
This link should answer your question. In short, React Components v9 will eventually supersede react-northstar.

Agora API for c# .Net Maui

I am looking at integration of agora realtime video and audio calls within a mobile application example.
We are using .Net Maui Preview which uses .NET 6 to deploy a blazor app to an android device.
Is there anyway of integrating agora with this? some sort of nuget package or a way to compile a dll or nuget package to be used ?
Agora offers an iOS and Android SDK. From what I can tell there's no way to include Kotlin/Swift code in a Blazor application, which would mean you're out of luck.
As an alternative maybe you can take a look at the Agora Flutter/React Native SDKs if you're building a cross platform app.

Developing Web Application via React JS - httpSter or best way?

We are planning to develop a web application and use react native framework.
We are bundle all the files inside a folder and start httpster to run the web-application.
Is that is the only way to run react native web apps or any other way?
for example, tomcat is a web app server and can we use the same and play framework has its own server and can be just run react files on play
In pre-requisites it says we just need the react js libraries.
Please let me know in detail.
Thanks
React Native is used for native mobile development.
For a webapp you can just use regular react.
https://facebook.github.io/react/

Single Page application with Bootstrap

I am pretty new to SPA. I'd like to known if it is possible to build a SPA with only Bootstrap or I have to use a framework like Jquery mobile or angular ?
Thanks
Bootstrap is CSS, HTML and JavaScript Framework which contains HTML- and CSS-based design templates for typography, forms, buttons, navigation and other interface components, as well as optional JavaScript extensions.
To Build a SPA application you have to use JavaScript libraries or Frameworks.
From http://tutorialzine.com/2015/02/single-page-app-without-a-framework/ you can get an idea of SPA without javascript frameworks.
There are a lot of open source JavaScript frameworks that help with building SPA, such as:
Angular
React
Ember
Aurelia
Vue.js
Cycle.js
Backbone
You have to use JS framework.
Bootstrap is only CSS framework. It makes your application looks better. Ok, you can use custom datepickers, modals etc, but usually this functionalities are implemented in CSS frameworks like Boostrap by jQuery. You can check this page to confirm it. You need JS framework for SPA (or create a new one).

Getting sproutcore application files to use them in a native app via Appcelerator Titanium

I would like build a app using sproucore framework, but i also want to integrate it with Titanium to have some desktop capability like file system, packaging, offline working etc...
I know that with sproutcore 2 this would be pretty easy since it allows to use the framework like a normal javascript library. But the project is still in beta and the docs are patchy at most (I consider patchy even the 1.x docs, actually).
So, I want to ask, which would be the best way to go to integrate sproutcore and Titanium API?
Titanium's main mission is to use JavaScript to build native apps, not to provide a OS-access layer for web apps. It would be hard to mix native and SproutCore UI elements.
That being said, here's some information that might help you:
Titanium has reversed it's application model starting with version 1.0:
http://developer.appcelerator.com/question/71/what-happened-to-html--css
The main app doesn't run in a web view anymore, instead it runs directly in JavaScriptCore and creates only native UI elements. One of the native UI elements is a web view
(http://developer.appcelerator.com/apidoc/mobile/latest/Titanium.UI.WebView-object)
and it's possible to make that full screen and run your SproutCore app inside of the web view. From there, you can call out to Titanium to call Titanium methods for file system access and the like.
Also, if you only target the desktop, you could even access the JavaScript context object of a webview and use it directly in JavaScriptCore.
Johannes