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

A flutter package for the MusiQwik font. This package includes some utilities for simplifying the use of the font in Flutter.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'examples/examples.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});
  static const String _title = 'Musiqwik Font Example';

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      title: _title,
      home: MyHomePage(title: _title),
    );
  }
}

class MyHomePage extends StatelessWidget {
  const MyHomePage({super.key, required this.title});
  final String title;

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: Text(title)),
      body: ListView(
        // mainAxisAlignment: MainAxisAlignment.start,
        // crossAxisAlignment: CrossAxisAlignment.start,
        children: const <Widget>[
          Example1(),
          Example2(),
          Example3(),
          Example4(),
          Example5(),
          Example6(),
          //Text('Musiqwik Font', style: _style),
        ],
      ),
    );
  }
}
5
likes
160
points
31
downloads

Publisher

unverified uploader

Weekly Downloads

A flutter package for the MusiQwik font. This package includes some utilities for simplifying the use of the font in Flutter.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on musiqwik_font