I also wanted a toast feature built-in, so I looked through the source code, and it looks like $ionicLoading can be used to sort of do what I want like this:
$ionicLoading.show({ template: 'Item Added!', noBackdrop: true, duration: 2000 });
This shows the text with no backdrop and automatically hides it after 2 seconds.
Just thought I’d share.