1.会议列表取消滑动波浪效果
This commit is contained in:
parent
297d09ffd6
commit
ae520861ad
|
|
@ -8,6 +8,7 @@ import 'package:wgshare/common/models/user_info_detail.dart';
|
||||||
import 'package:wgshare/common/store/user_store.dart';
|
import 'package:wgshare/common/store/user_store.dart';
|
||||||
import 'package:wgshare/main.dart';
|
import 'package:wgshare/main.dart';
|
||||||
import 'package:wgshare/routes/app_routes.dart';
|
import 'package:wgshare/routes/app_routes.dart';
|
||||||
|
import 'package:wgshare/utils/cus_behavior.dart';
|
||||||
import 'package:wgshare/utils/my_text.dart';
|
import 'package:wgshare/utils/my_text.dart';
|
||||||
import 'package:wgshare/utils/storage.dart';
|
import 'package:wgshare/utils/storage.dart';
|
||||||
import '../../utils/color_util.dart';
|
import '../../utils/color_util.dart';
|
||||||
|
|
@ -69,6 +70,8 @@ class HomePageState extends State<HomePage> with AutomaticKeepAliveClientMixin {
|
||||||
Expanded(
|
Expanded(
|
||||||
child: Container(
|
child: Container(
|
||||||
color: ColorUtil.Color_244_244_244,
|
color: ColorUtil.Color_244_244_244,
|
||||||
|
child: ScrollConfiguration(
|
||||||
|
behavior: CusBehavior(),
|
||||||
child: ListView.builder(
|
child: ListView.builder(
|
||||||
itemBuilder: (context, index) {
|
itemBuilder: (context, index) {
|
||||||
return Container(
|
return Container(
|
||||||
|
|
@ -169,6 +172,7 @@ class HomePageState extends State<HomePage> with AutomaticKeepAliveClientMixin {
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
itemCount: 20,
|
itemCount: 20,
|
||||||
|
)
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -637,7 +637,7 @@ class MeetingMainPage extends StatelessWidget {
|
||||||
),
|
),
|
||||||
Expanded(
|
Expanded(
|
||||||
child: Container(
|
child: Container(
|
||||||
color: ColorUtil.Color_57_57_57,
|
color: ColorUtil.Color_57_57_57_08,
|
||||||
))
|
))
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue