Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mobile Application using Angular JS [closed]

I want to develop a small 4 screens mobile application.

The technology stack that i want to use is AngularJS, I am good with C#, I searched few times and could not find any examples using AngularJS.

The mobile app should be compatible in iPhone, Android, Windows 8.

What are all the technologies that i need to use.

Any reference would be helpful.

like image 242
user804401 Avatar asked Feb 12 '13 05:02

user804401


People also ask

Can AngularJS be used for mobile apps?

Codes used in AngularJS for one app can be used in many other mobile app development processes. The reusability of codes is one of the most unique features of AngularJS and one of the biggest reasons why developers choose this framework for both Android and iOS app development processes.

Why AngularJS is not mobile friendly?

When Angular JS was introduced, it was not designed to focus on mobile browsers and did not have in-built support for mobile applications, due to which it is not mobile-friendly. On the other hand, Angular was built such that it could support the development of native mobile, native desktop, web and mobile web.

Will AngularJS stop working?

In January of 2018 we laid out our plans for the final releases of AngularJS before entering long-term support and last year, we extended the LTS due to the global pandemic until December 31, 2021. Well, friends, the time has come and we're no longer supporting AngularJS.

Is AngularJS still being used?

Released in 2010, AngularJS is now scheduled to reach the end of its life on December 31st, 2021. After this date, Google will no longer make patches or updates for the AngularJS framework.


2 Answers

You should take a look at the Angular-mobile-nav plugin on github:

https://github.com/ajoslin/angular-mobile-nav.

It is a very simple plugin to include with angular.js. Importantly the demo files that are included provide a pretty good idea of how to get started, although you do still need to know how Angular interacts with its modules, controllers and routes.

You can see the demo app here:

http://ajoslin.github.com/angular-mobile-nav/

I've just moved from jQuery-mobile to angular.js and angular-mobile-nav because it provides me with a much nicer way to build the app and bind data within the views, without hijacking the DOM.

like image 75
supaseca Avatar answered Sep 16 '22 11:09

supaseca


I am having a positive experience with this:

https://github.com/opitzconsulting/jquery-mobile-angular-adapter

It lets me use jQuery Mobile while respecting the AngularJS semantics and using its constructs.

like image 32
Frederic Fortier Avatar answered Sep 20 '22 11:09

Frederic Fortier