on_audio_query_web 1.3.1 copy "on_audio_query_web: ^1.3.1" to clipboard
on_audio_query_web: ^1.3.1 copied to clipboard

unlistedoutdated

The web implementation of [on_audio_query].

example/lib/main.dart

/*
=============
Author: Lucas Josino
Github: https://github.com/LucasPJS
Website: https://lucasjosino.com/
=============
Plugin/Id: on_audio_query#0
Homepage: https://github.com/LucasPJS/on_audio_query
Homepage(Web): https://github.com/LucasPJS/on_audio_query/tree/master/on_audio_query_web
Pub: https://pub.dev/packages/on_audio_query
License: https://github.com/LucasPJS/on_audio_query/blob/main/LICENSE
Copyright: © 2021, Lucas Josino. All rights reserved.
=============
*/

import 'package:flutter/material.dart';

void main() {
  runApp(
    const MaterialApp(
      home: MyApp(),
    ),
  );
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);
  @override
  Widget build(BuildContext context) {
    return const Scaffold(
      body: Center(
        child: Text("Just a random text."),
      ),
    );
  }
}