tau_war 0.17.15 copy "tau_war: ^0.17.15" to clipboard
tau_war: ^0.17.15 copied to clipboard

PlatformAndroidiOS
unlisted

An Etau implemention for Android and iOS, using the tau_webkit plugin. Member of the `Tau` family. Europe Stands With Ukraine. Pray for Ukraine.

pub version Tauweb

Documentation #

Tauwar stands for Ukraine! #

PeaceForUkraine Peace for Ukraine

PrayForUkraine Pray for Ukraine

Tauwar #

Tauwar is an Etau implementation for Flutter on mobiles.

Etau is the interface and this is what see the App. So, there are not many things to say about Tauwar because this is just an implementation. The only verb used by the App is tau(), which gives the implementation.

You can see all the Etau project documentation here.

Example

import 'package:etau/etau.dart';
import 'package:tau_war/tau_war.dart';

  @override
  void initState() 
  {
        super.initState();
        tau().init().then 
        ((e){
                audioCtx = tau().newAudioContext();
        });
  }

  ...
        // Then all the code depends only on the interface (`etau`)
        dest = audioCtx.destination;
        source = audioCtx.createBufferSource();
        source!.buffer = audioBuffer;
        pannerNode = audioCtx.createStereoPanner();
        pannerNode!.pan.value = pannerValue;
        source!.connect(pannerNode!).connect(dest!);

copied to clipboard

if your App needs to support at the same time Flutter Web And Flutter on mobiles:

import 'package:etau/etau.dart';
import 'package:etau/dummy.dart'
  if (dart.library.js_interop) 'package:tau_web/tau_web.dart'
  if (dart.library.io) 'package:tau_war/tau_war.dart';

  @override
  void initState() 
  {
        super.initState();
        tau().init().then 
        ((e){
                audioCtx = tau().newAudioContext();
        });
  }
copied to clipboard
0
likes
140
points
99
downloads

Publisher

verified publishertau.canardoux.xyz

Weekly Downloads

2024.09.14 - 2025.03.29

An Etau implemention for Android and iOS, using the tau_webkit plugin. Member of the `Tau` family. Europe Stands With Ukraine. Pray for Ukraine.

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

flutter, plugin_platform_interface, tau_webkit

More

Packages that depend on tau_war