ncs_io 0.0.4 copy "ncs_io: ^0.0.4" to clipboard
ncs_io: ^0.0.4 copied to clipboard

Unofficial NoCopyrightSound client for flutter to play/download copyright free songs.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:ncs_io_example/home.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    SystemChrome.setSystemUIOverlayStyle(const SystemUiOverlayStyle(
        statusBarColor: Colors.transparent,
        statusBarIconBrightness: Brightness.dark));
    return MaterialApp(
        home: const Home(),
        theme: ThemeData(useMaterial3: true, primarySwatch: Colors.deepPurple));
  }
}
2
likes
130
pub points
14%
popularity

Publisher

verified publisherflutterash.xyz

Unofficial NoCopyrightSound client for flutter to play/download copyright free songs.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

chaleno, html

More

Packages that depend on ncs_io