我正在尝试将 Twitter Bootstrap 用于 GWT,并获得与此处展示相同的漂亮视图 ,这就是我所做的:
1-从git下载模块
2- 在 pom.xml 中运行包任务
3-在我的项目类路径中包含创建的 jar。
4-继承了我的 project.gwt.xml 文件中的模块
<inherits name="com.github.nyao.bootstrap4gwt.Bootstrap"/>
5-将模块包含在我的根 xml 中
<ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder'
xmlns:g='urn:import:com.google.gwt.user.client.ui'
xmlns:m='urn:import:com.clouway.exreport.client.accountcreation.view'
xmlns:t='urn:import:com.github.nyao.bootstrap4gwt.client.ui'
>
<ui:style src="newRegistrationStyle.css"/>
<g:HTMLPanel addStyleDependentNames="{style.mainPanel}">
<div class="{style.headdistance}"/>
<div class="{style.container}">
<g:DecoratorPanel addStyleDependentNames="{style.decoratorPanel}">
<g:VerticalPanel addStyleDependentNames="{style.verticalPanel}}">
<m:AccountEditor ui:field="accountEditor"/>
<!--<g:Button ui:field="create" text="create"/>-->
<t:Button type="Success" text="sing in"/>
<g:Label ui:field="errorsLabel"/>
...
</ui:UiBinder>
但是什么也没发生。我有普通的文本框和普通的按钮。
我看了一下这个非常好的教程,这个人做对了,他的应用程序看起来非常漂亮。我查看了他的代码,但没有找到任何理由说明我的外观仍然正常,而且他的视野很好。提前感谢您的帮助