Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Browser support for Angular material

I want to use Angular Material for my next projects. https://material.angularjs.org

I didn't find any documentation about which browsers it supports. Anyone knows how it internally works and what to expect?

From what I understand flex css attribute, for example not supported by IE<10. Do you know if Angular material, has any fallback design for using without the flex css?

http://caniuse.com/#feat=flexbox

like image 294
Aminadav Glickshtein Avatar asked Dec 02 '15 21:12

Aminadav Glickshtein


People also ask

Does Angular material support IE?

Angular Material is targeted for all browsers with versions n-1; where n is the current browser version. IE 10 is no longer supported.

Does Angular 13 support IE?

Google has removed IE11 support in Angular 13. In the company that I work for, we have to keep IE11 support for the next few months due to contractual obligations.

Why Angular is not working in IE?

There can be numerous reasons why your Angular application is not working, including: Missing polyfills in polyfills. ts . Using a TypeScript target version which IE11 does not support.


2 Answers

As Angular Material uses CSS3 Flexbox, supported browsers are:

  • IE 11+,
  • Chrome,
  • Safari,
  • Firefox,
  • Android 4.2+ and
  • iOS 8+.

More details can be found at angularjs.blogspot.co.uk.

like image 178
Rahul Talar Avatar answered Oct 14 '22 04:10

Rahul Talar


From the official documentation:

Please note that using Angular Material requires the use of Angular 1.3.x or higher. Angular Material is targeted for all browsers with versions n-1; where n is the current browser version.

Also you can find several polyfill to extend the Browser's compatibility reading in their official forum: https://groups.google.com/forum/#!forum/ngmaterial

like image 6
caballerog Avatar answered Oct 14 '22 04:10

caballerog