這是我需要為我的組件提供的過渡效果 https://drive.google.com/file/d/1B6sVt2m42JYC17lK7m7qZzcSUJ4fXVhK/view 我已經搜索過所有內容,但我仍然無法找到提供這種效果的解決方案。我真的很感激任何幫助:)
uj5u.com熱心網友回復:
嘗試頁面視圖
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
static const String _title = 'Flutter Code Sample';
@override
Widget build(BuildContext context) {
return MaterialApp(
title: _title,
home: Scaffold(
appBar: AppBar(title: const Text(_title)),
body: const MyStatelessWidget(),
),
);
}
}
class MyStatelessWidget extends StatelessWidget {
const MyStatelessWidget({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
final PageController controller = PageController();
return PageView(
/// [PageView.scrollDirection] defaults to [Axis.horizontal].
/// Use [Axis.vertical] to scroll vertically.
controller: controller,
children: const <Widget>[
Center(
child: Text('First Page'),
),
Center(
child: Text('Second Page'),
),
Center(
child: Text('Third Page'),
)
],
);
}
}
檢查此鏈接以獲取參考https://api.flutter.dev/flutter/widgets/PageView-class.html
轉載請註明出處,本文鏈接:https://www.uj5u.com/caozuo/495044.html
