AndrewJBateman / ionic-angular-explorer

:clipboard: Ionic app that has a file explorer - tutorial code from Simon Grimm of the Ionic Academy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

⚑ Ionic Angular Explorer

πŸ“„ Table of contents

πŸ“š General info

  • A file or directory can be selected from an ion-fab button at the bottom right of the screen.
  • The Cordova-plugin-file plugin implements a File API allowing read/write access to files stored on the device.
  • The cordova-plugin-file-opener2 plugin will open a file on your device file system with its default application.

πŸ“· Screenshots

  • tba

πŸ“Ά Technologies

πŸ’Ύ Setup

  • npm i to install dependencies
  • To start the server on localhost://8100 type: 'ionic serve'
  • The Ionic DevApp was installed on an Android device from the Google Play app store.

πŸ’» Code Examples

  • code from Cordova plugin to open a file on mobile device file system with its default application
cordova.plugins.fileOpener2.open(
    filePath,
    fileMIMEType,
    {
        error : function(){ },
        success : function(){ }
    }
);

πŸ†’ Features

  • File storage and access.

πŸ“‹ Status & To-do list

  • Status: Code complete, but needs to be tested on a connected device.
  • To-do: setup a connected device/simulator to test properly.

πŸ‘ Inspiration

πŸ“ License

  • N/A

βœ‰οΈ Contact

About

:clipboard: Ionic app that has a file explorer - tutorial code from Simon Grimm of the Ionic Academy


Languages

Language:TypeScript 64.1%Language:SCSS 16.4%Language:HTML 11.5%Language:JavaScript 8.0%