All Projects → rajeshwarpatlolla → Ionic Toast

rajeshwarpatlolla / Ionic Toast

Licence: mit
'ionic-toast' bower component for ionic framework applications

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Ionic Toast

ionic4-angular6-crud-example
Building CRUD Mobile App using Ionic 4, Angular 6 and Cordova
Stars: ✭ 50 (-68.75%)
Mutual labels:  angularjs, ionic
Ionic3 Angular43 Httpclient
Example of Ionic 3 and the new Angular 4.3 HTTPClient
Stars: ✭ 20 (-87.5%)
Mutual labels:  ionic, angularjs
Ionic Native Transitions
[Maintenance only] Native transitions (iOS & Android) for Ionic Framework
Stars: ✭ 589 (+268.13%)
Mutual labels:  ionic, angularjs
Ionic Datepicker
'ionic-datepicker' bower component for ionic framework applications
Stars: ✭ 652 (+307.5%)
Mutual labels:  ionic, angularjs
Ion Digit Keyboard V2
A digital keyboard plugin to use in Ionic 2 applications.
Stars: ✭ 97 (-39.37%)
Mutual labels:  ionic, angularjs
Mobile.UP
Mobile.UP
Stars: ✭ 13 (-91.87%)
Mutual labels:  angularjs, ionic
Zmninja
High performance, cross platform ionic app for Home/Commerical Security Surveillance using ZoneMinder
Stars: ✭ 762 (+376.25%)
Mutual labels:  ionic, angularjs
ionic4-angular7-example
Ionic 4, Angular 7 and Cordova Tutorial: Build CRUD Mobile Apps
Stars: ✭ 57 (-64.37%)
Mutual labels:  angularjs, ionic
Building A Complete Mobile App With Ionic Framework
JSConfUY 2015 Ionic workshop app. Ionic example conference app.
Stars: ✭ 89 (-44.37%)
Mutual labels:  ionic, angularjs
Openbrews
A cross-platform open source app to help you brew beer.
Stars: ✭ 78 (-51.25%)
Mutual labels:  ionic, angularjs
Ionic Ratings
'ionic-ratings' bower component for ionic framework applications
Stars: ✭ 58 (-63.75%)
Mutual labels:  ionic, angularjs
Mobiscroll
Cross platform UI controls for progressive web and hybrid apps (plain JS, jQuery, Angular and React)
Stars: ✭ 1,510 (+843.75%)
Mutual labels:  ionic, angularjs
Blog
lizhonghui's blog
Stars: ✭ 109 (-31.87%)
Mutual labels:  ionic, angularjs
Siberian
Siberian Single App Edition (SAE), free and open-source app builder.
Stars: ✭ 144 (-10%)
Mutual labels:  ionic, angularjs
Bibi Ionic
An mobile app of e-commerce for Ionic
Stars: ✭ 154 (-3.75%)
Mutual labels:  ionic
Ng Currency
Currency with AngularJS made easy!
Stars: ✭ 156 (-2.5%)
Mutual labels:  angularjs
Pagermon
Multimon-ng pager message parser and viewer
Stars: ✭ 154 (-3.75%)
Mutual labels:  angularjs
Picodeploy
Deploy Pico-8 Carts as Standalone Applications on Desktop 🖥️(Electron) and Mobile 📱(Ionic) 📦👾
Stars: ✭ 153 (-4.37%)
Mutual labels:  ionic
Stock.indicators
Stock indicator technical analysis library package for .NET. Send in historical price quotes and get back desired technical indicators. Nothing more. It can be used in any market analysis software using standard OHLCV price quotes for equities, commodities, forex, cryptocurrencies, and others. We had private trading algorithms, machine learning, and charting systems in mind when originally creating this community library. Current indicators include: Accumulation/Distribution Line (ADL), Aroon Oscillator, Arnaud Legoux Moving Average (ALMA), Average Directional Index (ADX), Average True Range (ATR), Awesome Oscillator (AO), Balance of Power (BOP), Beta Coefficient, Bollinger Bands®, Chaikin Money Flow (CMF), Chaikin Oscillator, Chandelier Exit, Choppiness Index (CHOP), Commodity Channel Index (CCI), ConnorsRSI, Correlation Coefficient, Donchian Channels, Double Exponential Moving Average (DEMA), Elder-ray Index, Exponential Moving Average (EMA), Force Index, Fractal Chaos Bands (FCB), Gator Oscillator, Heikin-Ashi, Hull Moving Average (HMA), Ichimoku Cloud, Kaufman's Adaptive Moving Average (KAMA), KDJ Index, Keltner Channels, Momentum Oscillator, Money Flow Index (MFI), MESA Adaptive Moving Averages (MAMA), Moving Average Convergence/Divergence (MACD), Moving Average Envelopes, On-balance Volume (OBV), Parabolic SAR (stop and reverse), Percentage Volume Oscillator (PVO), Pivot Points and Rolling Pivot Points, Price Channels, Price (Comparative) Relative Strength (PRS), Price Momentum Oscillator (PMO), Rate of Change (ROC), Relative Strength Index (RSI), R-Squared (Coefficient of Determination), Simple Moving Average (SMA), Slope and Linear Regression, Smoothed Moving Average (SMMA), Standard Deviation, Stoller Average Range Channel (STARC) Bands, Stochastic Oscillator, Stochastic RSI, SuperTrend, Tillson T3 Moving Average, Triple Exponential Moving Average (TEMA), Triple EMA Oscillator (TRIX), True Strength Index (TSI), Ulcer Index, Ultimate Oscillator, Volume Simple Moving Average, Volume Weighted Average Price (VWAP), Vortex Indicator (VI), Weighted Moving Average (WMA), Williams %R, Williams Alligator, Williams Fractal, and Zig Zag.
Stars: ✭ 157 (-1.87%)
Mutual labels:  package
Angular Promise Buttons
Chilled loading buttons for AngularJS
Stars: ✭ 156 (-2.5%)
Mutual labels:  angularjs

bitHound Score

Introduction:

This is an ionic-toast bower component which can be used with any Ionic framework's application.

View Demo

Prerequisites.

1) node.js, bower and gulp.

How to use:

1) In your project repository install the ionic-toast using bower

bower install ionic-toast --save

This will install the latest version released. If you wish to install a specific version please use bower install ionic-toast#<version number>

2) Give the path of ionic-toast.bundle.min.js in your index.html file.

<!-- path to ionic / angularjs files-->
<script src="lib/ionic-toast/dist/ionic-toast.bundle.min.js"></script>

3) In your application module inject the dependency ionic-toast, in order to work with the ionic toast.

angular.module('mainModuleName', ['ionic', 'ionic-toast']){
 //
}

4) Inject 'ionicToast' in your controller.

.controller('HomeCtrl', ['$scope', 'ionicToast', function($scope, ionicToast) {
  //code here
}])

5) In your template, you can use like below

<button class="button button-block" ng-click="showToast()">Show Toast at top with close</button>

6) In your controller you have to define a function like below to show the toast

$scope.showToast = function(){
<!-- ionicToast.show(message, position, stick, time); -->
  ionicToast.show('This is a toast at the top.', 'top', true, 2500);
};

The arguments are as follows. The order of arguments should not be changed.

a) message is the first argument, which takes any string message.

b) position(Optional) is the second argument, which takes on of the three values(top, middle, bottom). default position is top.

c) stick(Optional) is the third argument, which takes either true or false. Default value is false.

  • If the value is true, the toast will not close automatically. It will be closed once you click on the close button.
  • If the value is false, the toast will close automatically, after the given time.

d) timeout(Optional) is the fourth argument, which takes time in milliseconds. If the value is greater than 5000, then it will be considered as 5000(5 seconds) only. The default value is 4000 milli seconds.

e) background(Optional) is the fifth argument, which takes the background color in hexadecimal, rgb() or rgba(). If the value is null the background color is rgba(0, 0, 0, 0.75).

7) In your controller you have to define a function like below to hide the toast

$scope.hideToast = function(){
  ionicToast.hide();
};

Screen Shots:

Once you are successfully done with the above steps, you should be able to see the below screen shots. I have used three buttons here.

The first screen shot shows only the buttons before clicking on them. Once you click on the button you should see the remaining screen shots.

ionic-toast buttons ionic-toast top ionic-toast middle ionic-toast bottom

Versions:

1) v0.1.0

The whole ionic-toast component functionality has been implemented, and it can be installed with the command bower install ionic-toast --save

2) v0.1.1

Bug Fix

3) v0.2.0

Lint issues fixed, npm packages updated, main files added in the package.json, changes in the gulp tasks.

4) v0.3.0

Code modularity implemented, npm packages updated.

JS and CSS file is combined into one ionic-toast.bundle.min.js file in the dist folder.

5) v0.4.0

Bug fix.

6) v0.4.1

Issue#21

License:

MIT

Contact:

gmail : [email protected]

github : https://github.com/rajeshwarpatlolla

twitter : https://twitter.com/rajeshwar_9032

facebook : https://www.facebook.com/rajeshwarpatlolla

paypal : [email protected]

Rate / Comment : http://market.ionic.io/plugins/ionictoast

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].