Are there other possibilities to style an AngularJS
application in a mobile friendly way than CSS
?
I am planning a mobile app and want to use A
A very basic example:
html:
js:
var app = angular.module('myApp', []);
app.controller('myCtrl', function ($scope) {
$scope.cars = [
'acura', 'audi', 'BMW'
];
});
working demo: http://jsfiddle.net/eZdNm/
The main problem with jQuery mobile and AngularJS is they both want to control page routing. You can find out more by searchng jQuery mobile and Angular in google.
Yes, if you only want a ready to go / mobile friendly UI. I would suggest other more CSS based frameworks such as bootstrap.