我在抖动<html>
<head>
<meta charset="utf-8"/>
<title></title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.7/angular.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.7/angular-route.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.7/angular-resource.js"></script>
<script src="JavaScript.js"></script>
</head>
<body ng-app="myapp">
<div class="Container">
<nav class="navbar navbar-default">
<ul class="navbar navbar-nav">
<li>
<a href="#page1">Page 1</a>
<a href="#page2">Page 2</a>
<a href="#">Page 3</a>
</li>
</ul>
</nav>
</div>
<div ng-view></div>
<script>
var app = angular.module("myapp", ["ngRoute"]);
app.config(function ($routeProvider) {
$routeProvider.when("/page1", {
template: '<h1>Page 1</h1>'
})
.when("/page2", {
template: '<h1>Page 2</h1>'
})
.otherwise({
template: '<h1> note found </h1>'
})
});
</script>
</body>
</html>
和github
上搜索了一些问题,以解决此问题
在下面的实现中,我无法输入stackoverflow
来使Enter
中有更多行,我认为我正确设置了TextFormField
和keyboardType
,但是我的键盘处于打开状态手机没有maxLines
键,即enter
next
答案 0 :(得分:2)
删除textInputAction: TextInputAction.next
TextFormField(
textAlign: TextAlign.start,
keyboardType: TextInputType.multiline,
maxLines: 7,
style: Theme.of(context).textTheme.caption.copyWith(
color: Colors.black,
),
//textInputAction: TextInputAction.next,
);
或@Siddharth Patankar评论集textInputAction: TextInputAction.newline