Skip to content

Instantly share code, notes, and snippets.

@sbis04
Created February 17, 2021 01:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sbis04/738824066982577216d42a172907cca4 to your computer and use it in GitHub Desktop.
Save sbis04/738824066982577216d42a172907cca4 to your computer and use it in GitHub Desktop.
class HomePage extends StatefulWidget {
@override
_HomePageState createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
MUXClient _muxClient = MUXClient();
TextEditingController _textControllerVideoURL;
FocusNode _textFocusNodeVideoURL;
@override
void initState() {
super.initState();
_muxClient.initializeDio();
_textControllerVideoURL = TextEditingController(text:demoVideoUrl);
_textFocusNodeVideoURL = FocusNode();
}
@override
Widget build(BuildContext context) {
return Container();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment