Skip to content

Instantly share code, notes, and snippets.

@nbnD
Created June 14, 2022 11:25
Show Gist options
  • Save nbnD/620849c946331ad3ec71aaccce9c0c37 to your computer and use it in GitHub Desktop.
Save nbnD/620849c946331ad3ec71aaccce9c0c37 to your computer and use it in GitHub Desktop.
YoutubeVideoPlayer
import 'package:flutter/material.dart';
import 'homepage.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return const MaterialApp(
title: 'Flutter Demo',
home: HomePage(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment