Having utilized and appreciated Ionic for many mobile apps, I am now in the process of creating a web client for my application. It has come to my attention that Ionic was not designed for desktop applications. However, I am curious if I can still utilize its components in a typical AngularJS - Bootstrap 3 website?
The components I am interested in are mostly:
- Pull to refresh and infinite scroll.
- Swipe list to display option buttons.
- Modals
I attempted to initiate a new Ionic project and incorporate my custom CSS and JS by simply copying out the content from the 'www' folder.
ionic start blank
However, I encountered an issue as Ionic kept altering my DOM and applying its own CSS which overrode mine. Therefore, I only wish to extract the components and use regular AngularJS.
Is this feasible?