Basically what I want to know is to find out if my GWT application is running on a MacOS or any other operating system, to setup the shortcuts properly using cmd on a MacOS and ctrl everywhere else.
You can use:
import com.google.gwt.user.client.Window.Navigator;
...
String platform = Navigator.getPlatform();
This returns a String (the same as JavaScript's navigator.platform
). You can then decide on the OS similar to this script: It simply checks for the substring "Win"/"Mac"/"iPhone"/"Linux".
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With