Skip to content

Commit 586e828

Browse files
committed
fix webView title
1 parent 1842e0e commit 586e828

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/page/GSYWebView.dart

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ class GSYWebView extends StatelessWidget {
2020
return new Text(title);
2121
}
2222
optionControl.url = url;
23-
return GSYCommonOptionWidget(optionControl);
23+
return new Row(children: [
24+
new Expanded(child: new Container()),
25+
GSYCommonOptionWidget(optionControl),
26+
]);
2427
}
2528

2629
@override

0 commit comments

Comments
 (0)