https://github.com/bostrt/gwt-zocial
RETIRED. GWT buttons using the Zocial CSS theme.
https://github.com/bostrt/gwt-zocial
Last synced: 8 months ago
JSON representation
RETIRED. GWT buttons using the Zocial CSS theme.
- Host: GitHub
- URL: https://github.com/bostrt/gwt-zocial
- Owner: bostrt
- Created: 2013-05-23T00:16:24.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2013-05-29T00:13:14.000Z (about 13 years ago)
- Last Synced: 2025-02-12T20:36:13.792Z (over 1 year ago)
- Language: Java
- Homepage:
- Size: 328 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
gwt-zocial
==========
GWT buttons using the [Zocial CSS](http://zocial.smcllns.com) theme.
Add to your project
-------------------
Add the following to your pom.xml file
net.bostrt.gwt
zocial
1.0
Add the following to your *.gwt.xml file
That's it!
In Code
-------
Now you can create buttons directly in code
import net.bostrt.gwt.zocial.client.button.GooglePlusButton;
...
GooglePlusButton gPlusButton = new GooglePlusButton();
gPlusButton.addClickHandler(...);
UiBinder
--------
You can also use these buttons in UiBinder
...
...