Android look $ionicActionSheet. Android hardware menu button

Hi Ionic Team,

First of all I would like to say thank you for creating Ionic. It’s easy to use and beautiful.

I’m currently developing an Android app using Ionic.

Is there any plans to make the $ionicActionSheet to have an Android look to it?

Secondly, are you guys planning to handle the Android menu button in the future?

Thanks

At this time, I’m not aware of any plans to release platform specific themes. However, you can customize the Action Sheet to your liking by either overriding the CSS or SASS.

How do you mean the Android menu button? I’m pretty much a noob when it comes to Android, but I thought the only interaction apps had with device buttons was the hardware back button.

This is what I mean by the Android menu button.

I’ll be using that to open the $ionicActionSheet. I already found a way to do it just by attaching to the Cordova event:

document.addEventListener("menubutton", onMenuKeyDown, false);

function onMenuKeyDown() {
	$scope.showActionSheet();
};

Thanks for the advise on the CSS and SASS.