Transform your smartphone (e.g., Iphone, Samsung, Motorola, etc) camera in a WebCam to make video conference (e.g., Google Meeting, Zoom, Discord, etc).
Examples:
import 'dart:async'; | |
import 'package:flutter/material.dart'; | |
import 'dart:isolate'; | |
void main() => runApp(new MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return new MaterialApp( |
import 'dart:convert'; | |
import 'package:flutter/material.dart'; | |
import 'package:webview_flutter/webview_flutter.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { |
import 'package:flutter/material.dart'; | |
class CustomPage extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
body: Container(), | |
floatingActionButton: FloatingActionButton( | |
onPressed: () { | |
showModalBottomSheet( |
Transform your smartphone (e.g., Iphone, Samsung, Motorola, etc) camera in a WebCam to make video conference (e.g., Google Meeting, Zoom, Discord, etc).
Examples:
@bpteague Has an excellent update solution as of February 2025 using modern tools and an updated workflow.
This gist will remain here, but is deprecated. I'll keep it here historical and link-preservation purposes only. I strongly encourage everyone to check out the solution above!
#!/bin/bash | |
################################################################### | |
#Description : Script for install tools for android reversing | |
# Testing in Ubuntu 20.04 | |
# Run as root | |
# Tools: | |
# - APKtool | |
# - Jadx | |
# - adb |
This is a gist used in the following blog posts:
USB Quick Start | |
=============== | |
XHCI controller support | |
----------------------- | |
QEMU has XHCI host adapter support. The XHCI hardware design is much | |
more virtualization-friendly when compared to EHCI and UHCI, thus XHCI | |
emulation uses less resources (especially cpu). So if your guest |
/** | |
* Add an action which will be invoked when the text is changing. | |
* | |
* @return the [EditText.onTextChangeListener] added to the [EditText] | |
*/ | |
inline fun EditText.doAfterTextChanged( | |
delay: Long = 500, | |
crossinline onTextChangedDelayed: (text: String) -> Unit | |
) = onTextChangeListener(delay, onTextChangedDelayed) |