Mobile Application using Angular JS

AngularjsMobile

Angularjs Problem Overview


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.

Angularjs Solutions


Solution 1 - Angularjs

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.

Solution 2 - Angularjs

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.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser804401View Question on Stackoverflow
Solution 1 - AngularjssupasecaView Answer on Stackoverflow
Solution 2 - AngularjsFrederic FortierView Answer on Stackoverflow