20 lines
550 B
Dart
20 lines
550 B
Dart
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<StudyPractisePage> createState() => _StudyPractisePageState();
|
|
}
|
|
|
|
class _StudyPractisePageState extends State<StudyPractisePage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: MyAppbar(title: "课后练习"),
|
|
body: SizedBox(),
|
|
);
|
|
}
|
|
}
|