#创意代码大赏#
Center(
child: SizedBox(
height: MediaQuery.of(context).size.height,
width: MediaQuery.of(context).size.width,
child: AspectRatio(
aspectRatio: _calculateAspectRatio(context),
child: _buildPlayerWithControls(customVideoController, context),
),
),
);
展开
评论