Browse Source

Merge remote-tracking branch 'origin/dev' into remove_uniapp

ff_new
fmk 3 years ago
parent
commit
e6f123a6ed
  1. 5
      lib/community/community_view/class_details.dart
  2. 5
      lib/community/community_view/home_class.dart

5
lib/community/community_view/class_details.dart

@ -33,6 +33,10 @@ class ClassDetails extends StatefulWidget {
} }
} }
class myChewieController extends ChewieController{
}
class _ClassDetails extends State<ClassDetails> with WidgetsBindingObserver { class _ClassDetails extends State<ClassDetails> with WidgetsBindingObserver {
VideoPlayerController videoPlayerController; VideoPlayerController videoPlayerController;
Chewie chewies; Chewie chewies;
@ -146,6 +150,7 @@ class _ClassDetails extends State<ClassDetails> with WidgetsBindingObserver {
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Scaffold( return Scaffold(
body: Container( body: Container(
margin: EdgeInsets.only(top:30),
child: Column( child: Column(
children: [ children: [
Expanded( Expanded(

5
lib/community/community_view/home_class.dart

@ -120,7 +120,10 @@ class _HomeClass extends State<HomeClass> {
children: [ children: [
Container( Container(
decoration: BoxDecoration( decoration: BoxDecoration(
borderRadius: BorderRadius.circular(4), borderRadius: BorderRadius.only(
topLeft: Radius.circular(4),
topRight: Radius.circular(4),
),
boxShadow: [ boxShadow: [
BoxShadow( BoxShadow(
color: Colors.black.withAlpha(10), color: Colors.black.withAlpha(10),

Loading…
Cancel
Save