ScrollBar 和 SingleChildScrollView 不工作
ScrollBar and SingleChildScrollView not working
我试图在滚动视图中显示标题和副标题列表,但滚动视图不工作。我收到此错误:
RenderBox was not laid out: RenderRepaintBoundary#d93c1 relayoutBoundary=up4 NEEDS-PAINT
'package:flutter/src/rendering/box.dart':
Failed assertion: line 1940 pos 12: 'hasSize'
我的飞镖文件的完整代码:
//import 'package:flappy_search_bar/flappy_search_bar.dart';
import 'package:flappy_search_bar/flappy_search_bar.dart';
import 'package:flappy_search_bar/search_bar_style.dart';
import 'package:flutter/material.dart';
import 'body.dart';
class DefinationBody extends StatelessWidget {
const DefinationBody({
Key key,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
backgroundColor: Colors.white,
centerTitle: true,
leading: Padding(
padding: EdgeInsets.only(left: 12),
child: IconButton(
icon: Icon(Icons.arrow_back, color: Colors.black),
onPressed: () => Navigator.push(
context,
MaterialPageRoute(builder: (context) => BusinessBody()),
),
),
),
title: Text(
"Definations",
style: TextStyle(
color: Colors.orange[900],
),
),
),
//backgroundColor: Colors.yellow,
body: Container(
decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage("assets/images/main_bottom.png"),
alignment: Alignment.bottomCenter,
fit: BoxFit.cover,
),
),
child: MyCardWidget(),
),
),
);
}
}
/// This is the stateless widget that the main application instantiates.
class MyCardWidget extends StatelessWidget {
MyCardWidget({Key key}) : super(key: key);
//final ScrollController _scrollController = ScrollController();
@override
Widget build(BuildContext context) {
return Center(
child: Column(
children: [
Container(
alignment: Alignment.topCenter,
child: Padding(
padding: const EdgeInsets.only(top: 10, left: 50.0),
child: Column(
children: [
SizedBox(
child: Row(
children: [
Text(
'Definations',
style: TextStyle(
fontFamily: 'Arial',
fontSize: 18,
fontWeight: FontWeight.bold,
color: Colors.black,
height: 2,
),
textAlign: TextAlign.center,
),
Padding(
padding: EdgeInsets.symmetric(horizontal: 10.0),
child: Container(
margin: EdgeInsets.only(top: 10),
height: 3.0,
width: 200.0,
color: Colors.orange[900],
),
),
],
),
),
],
),
),
),
Padding(
padding: const EdgeInsets.only(top: 20.0, left: 20, right: 20),
child: Container(
height: 82,
width: double.infinity,
decoration: BoxDecoration(
border: Border.all(color: Colors.orange[900]),
borderRadius: BorderRadius.all(Radius.circular(40))),
// ignore: missing_required_param
child: SearchBar(
searchBarStyle: SearchBarStyle(
backgroundColor: Colors.transparent,
padding: EdgeInsets.all(20),
borderRadius: BorderRadius.circular(40),
),
hintText: "Search",
hintStyle: TextStyle(
color: Colors.grey[100],
),
textStyle: TextStyle(
color: Colors.black,
fontWeight: FontWeight.bold,
),
mainAxisSpacing: 10,
crossAxisSpacing: 10,
)),
),
Container(
child: new Expanded(
flex: 1,
child: Scrollbar(
isAlwaysShown: true,
child: SingleChildScrollView(
child: ListView(
children: [
ListTile(
title: Text('this is title'),
subtitle: Text('this is sub title'),
),
ListTile(
title: Text('this is title'),
subtitle: Text('this is sub title'),
),
ListTile(
title: Text('this is title'),
subtitle: Text('this is sub title'),
),
]
)
)
)
),
),
],
),
);
}
}
你可以做 Expanded+SingleChildScrollview,SingleChildScrollView
有无限高度,所以它不会工作,你需要 constrained/fixed 高度 SingleChildScrollView
,
#编辑
Scrollbar(
isAlwaysShown: true,
child: ListView(
children: List.generate(100, (index) => ListTile(
title: Text('this is title'),
subtitle: Text('this is sub title'),
))
)
)
使您的列表视图 shrinkwrap: true 并确保滚动物理
shrinkWrap: true,
physics: ScrollPhysics()
我觉得你的ListView
和SingleChildScrollView
有冲突。
SingleChildScrollView(
child: Column(
children: [
ListTile(
title: Text('this is title'),
subtitle: Text('this is sub title'),
),
ListTile(
title: Text('this is title'),
subtitle: Text('this is sub title'),
),
ListTile(
title: Text('this is title'),
subtitle: Text('this is sub title'),
),
],
),
),
或者您可以设置身高
SingleChildScrollView(
child: SizedBox(
height: 200,
child: ListView(
children: [
ListTile(
title: Text('this is title'),
subtitle: Text('this is sub title'),
),
ListTile(
title: Text('this is title'),
subtitle: Text('this is sub title'),
),
ListTile(
title: Text('this is title'),
subtitle: Text('this is sub title'),
),
],
),
),
),
我试图在滚动视图中显示标题和副标题列表,但滚动视图不工作。我收到此错误:
RenderBox was not laid out: RenderRepaintBoundary#d93c1 relayoutBoundary=up4 NEEDS-PAINT
'package:flutter/src/rendering/box.dart':
Failed assertion: line 1940 pos 12: 'hasSize'
我的飞镖文件的完整代码:
//import 'package:flappy_search_bar/flappy_search_bar.dart';
import 'package:flappy_search_bar/flappy_search_bar.dart';
import 'package:flappy_search_bar/search_bar_style.dart';
import 'package:flutter/material.dart';
import 'body.dart';
class DefinationBody extends StatelessWidget {
const DefinationBody({
Key key,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
backgroundColor: Colors.white,
centerTitle: true,
leading: Padding(
padding: EdgeInsets.only(left: 12),
child: IconButton(
icon: Icon(Icons.arrow_back, color: Colors.black),
onPressed: () => Navigator.push(
context,
MaterialPageRoute(builder: (context) => BusinessBody()),
),
),
),
title: Text(
"Definations",
style: TextStyle(
color: Colors.orange[900],
),
),
),
//backgroundColor: Colors.yellow,
body: Container(
decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage("assets/images/main_bottom.png"),
alignment: Alignment.bottomCenter,
fit: BoxFit.cover,
),
),
child: MyCardWidget(),
),
),
);
}
}
/// This is the stateless widget that the main application instantiates.
class MyCardWidget extends StatelessWidget {
MyCardWidget({Key key}) : super(key: key);
//final ScrollController _scrollController = ScrollController();
@override
Widget build(BuildContext context) {
return Center(
child: Column(
children: [
Container(
alignment: Alignment.topCenter,
child: Padding(
padding: const EdgeInsets.only(top: 10, left: 50.0),
child: Column(
children: [
SizedBox(
child: Row(
children: [
Text(
'Definations',
style: TextStyle(
fontFamily: 'Arial',
fontSize: 18,
fontWeight: FontWeight.bold,
color: Colors.black,
height: 2,
),
textAlign: TextAlign.center,
),
Padding(
padding: EdgeInsets.symmetric(horizontal: 10.0),
child: Container(
margin: EdgeInsets.only(top: 10),
height: 3.0,
width: 200.0,
color: Colors.orange[900],
),
),
],
),
),
],
),
),
),
Padding(
padding: const EdgeInsets.only(top: 20.0, left: 20, right: 20),
child: Container(
height: 82,
width: double.infinity,
decoration: BoxDecoration(
border: Border.all(color: Colors.orange[900]),
borderRadius: BorderRadius.all(Radius.circular(40))),
// ignore: missing_required_param
child: SearchBar(
searchBarStyle: SearchBarStyle(
backgroundColor: Colors.transparent,
padding: EdgeInsets.all(20),
borderRadius: BorderRadius.circular(40),
),
hintText: "Search",
hintStyle: TextStyle(
color: Colors.grey[100],
),
textStyle: TextStyle(
color: Colors.black,
fontWeight: FontWeight.bold,
),
mainAxisSpacing: 10,
crossAxisSpacing: 10,
)),
),
Container(
child: new Expanded(
flex: 1,
child: Scrollbar(
isAlwaysShown: true,
child: SingleChildScrollView(
child: ListView(
children: [
ListTile(
title: Text('this is title'),
subtitle: Text('this is sub title'),
),
ListTile(
title: Text('this is title'),
subtitle: Text('this is sub title'),
),
ListTile(
title: Text('this is title'),
subtitle: Text('this is sub title'),
),
]
)
)
)
),
),
],
),
);
}
}
你可以做 Expanded+SingleChildScrollview,SingleChildScrollView
有无限高度,所以它不会工作,你需要 constrained/fixed 高度 SingleChildScrollView
,
#编辑
Scrollbar(
isAlwaysShown: true,
child: ListView(
children: List.generate(100, (index) => ListTile(
title: Text('this is title'),
subtitle: Text('this is sub title'),
))
)
)
使您的列表视图 shrinkwrap: true 并确保滚动物理
shrinkWrap: true,
physics: ScrollPhysics()
我觉得你的ListView
和SingleChildScrollView
有冲突。
SingleChildScrollView(
child: Column(
children: [
ListTile(
title: Text('this is title'),
subtitle: Text('this is sub title'),
),
ListTile(
title: Text('this is title'),
subtitle: Text('this is sub title'),
),
ListTile(
title: Text('this is title'),
subtitle: Text('this is sub title'),
),
],
),
),
或者您可以设置身高
SingleChildScrollView(
child: SizedBox(
height: 200,
child: ListView(
children: [
ListTile(
title: Text('this is title'),
subtitle: Text('this is sub title'),
),
ListTile(
title: Text('this is title'),
subtitle: Text('this is sub title'),
),
ListTile(
title: Text('this is title'),
subtitle: Text('this is sub title'),
),
],
),
),
),