import 'package:flutter/material.dart'; import 'package:qhd_prevention/pages/my_appbar.dart'; class StudyPractisePage extends StatefulWidget { const StudyPractisePage(this.VIDEOCOURSEWARE_ID,{super.key}); final String VIDEOCOURSEWARE_ID; @override State createState() => _StudyPractisePageState(); } class _StudyPractisePageState extends State { @override Widget build(BuildContext context) { return Scaffold( appBar: MyAppbar(title: "课后练习"), body: SizedBox(), ); } }