Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andrewjbateman/ionic-picker-study
:clipboard: App created using the Ionic framework to use the Ion-picker component. Another great tutorial from the Ionic Academy
https://github.com/andrewjbateman/ionic-picker-study
angular angular13 html5 ion-picker ionic ionic-academy ionic6 scss typescript4
Last synced: 6 days ago
JSON representation
:clipboard: App created using the Ionic framework to use the Ion-picker component. Another great tutorial from the Ionic Academy
- Host: GitHub
- URL: https://github.com/andrewjbateman/ionic-picker-study
- Owner: AndrewJBateman
- License: mit
- Created: 2019-06-10T06:05:08.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-03T04:54:17.000Z (almost 2 years ago)
- Last Synced: 2023-03-02T09:37:21.603Z (over 1 year ago)
- Topics: angular, angular13, html5, ion-picker, ionic, ionic-academy, ionic6, scss, typescript4
- Language: TypeScript
- Homepage:
- Size: 4.14 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# :zap: Ionic Picker Study
* App created using the [Ionic framework](https://ionicframework.com/docs) to use the [Ion-picker](https://ionicframework.com/docs/api/picker) component.
* Tutorial code from the [Ionic Academy](https://ionicacademy.com) with modifications - see [:clap: Inspiration](#clap-inspiration) below.
* **Note:** to open web links in a new window use: _ctrl+click on link_![GitHub repo size](https://img.shields.io/github/repo-size/AndrewJBateman/ionic-picker-study?style=plastic)
![GitHub pull requests](https://img.shields.io/github/issues-pr/AndrewJBateman/ionic-picker-study?style=plastic)
![GitHub Repo stars](https://img.shields.io/github/stars/AndrewJBateman/ionic-picker-study?style=plastic)
![GitHub last commit](https://img.shields.io/github/last-commit/AndrewJBateman/ionic-picker-study?style=plastic)## :page_facing_up: Table of contents
* [:zap: Ionic Picker Study](#zap-ionic-picker-study)
* [:page_facing_up: Table of contents](#page_facing_up-table-of-contents)
* [:books: General info](#books-general-info)
* [:camera: Screenshots](#camera-screenshots)
* [:signal_strength: Technologies](#signal_strength-technologies)
* [:floppy_disk: Setup](#floppy_disk-setup)
* [:computer: Code Examples](#computer-code-examples)
* [:cool: Features](#cool-features)
* [:clipboard: Status & To-do list](#clipboard-status--to-do-list)
* [:clap: Inspiration](#clap-inspiration)
* [:file_folder: License](#file_folder-license)
* [:envelope: Contact](#envelope-contact)## :books: General info
* Extract from the [Ion-picker](https://ionicframework.com/docs/api/picker) documentation: A Picker is a dialog that displays a row of buttons and columns underneath. It appears on top of the app's content, and at the bottom of the viewport.
* No extra imported dependencies; picker controller component is part of ionic/angular, picker options component is part of ionic/core. Note: picker buttons components was not used.## :camera: Screenshots
![image](./img/picker.png)
![image](./img/advance-picker.png)## :signal_strength: Technologies
* [Ionic v6](https://ionicframework.com/)
* [Angular v13](https://angular.io/)
* [Ionic/angular v6](https://www.npmjs.com/package/@ionic/angular)## :floppy_disk: Setup
* Run `npm i` to install dependencies
* Run `ng lint` to lint files. All files pass linting.
* To start the server on _localhost://8100_ type: `ionic serve`## :computer: Code Examples
* extract from `picker.interface.ts` file (reached by right-clicking on '_PickerOptions_' in `home.page.ts` and choosing '_go to definition_'). Shows how to fill in Picker Column options.
```typescript
export interface PickerOptions {
columns: PickerColumn[];
buttons?: PickerButton[];
cssClass?: string | string[];
backdropDismiss?: boolean;
animated?: boolean;
mode?: Mode;
keyboardClose?: boolean;
id?: string;
enterAnimation?: AnimationBuilder;
leaveAnimation?: AnimationBuilder;
}
```## :cool: Features
* single and multi-column pickers available.
* Picker CSS properties can be updated in `global.scss` file.## :clipboard: Status & To-do list
* Status: Working.
* To-do: try more of the functionality from the Ion-picker component.## :clap: Inspiration
* Project inspired by [Simon Grimm´s Youtube video: How to Present a Picker Using the Ion Picker Component](https://www.youtube.com/watch?v=bEjw--B8jS0)
## :file_folder: License
* This project is licensed under the terms of the MIT license.
## :envelope: Contact
* Repo created by [ABateman](https://github.com/AndrewJBateman), email: [email protected]