mateo_mobile 0.1.2 copy "mateo_mobile: ^0.1.2" to clipboard
mateo_mobile: ^0.1.2 copied to clipboard

The Flutter implementation of Mateo Mobile, a simple, expressive, warm design system for touch-first Android and iOS applications.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:mateo_mobile/mateo_mobile.dart';

void main() => runApp(const MateoExample());

/// A compact gallery for the public Mateo Mobile components.
class MateoExample extends StatelessWidget {
  /// Creates the Mateo Mobile component gallery.
  const MateoExample({super.key});

  @override
  Widget build(BuildContext context) {
    return MateoApp(
      title: 'Mateo component gallery',
      color: const (
        primary: Color(0xFFFF4A4B),
        onPrimary: Color(0xFFFFFFFF),
      ),
      home: Scaffold(
        appBar: AppBar(title: const Text('Mateo component gallery')),
        body: Center(
          child: Wrap(
            spacing: 16,
            runSpacing: 16,
            children: [
              MateoButton(
                label: 'Primary',
                variant: MateoButtonVariant.primary,
                onPressed: () {},
              ),
              const MateoButton(
                label: 'Disabled',
                variant: MateoButtonVariant.secondary,
              ),
              const MateoDotsLoadingIndicator(),
            ],
          ),
        ),
      ),
    );
  }
}
1
likes
160
points
74
downloads

Documentation

API reference

Publisher

verified publisherventairy.com

Weekly Downloads

The Flutter implementation of Mateo Mobile, a simple, expressive, warm design system for touch-first Android and iOS applications.

Homepage
Repository (GitHub)
View/report issues
Contributing

Topics

#flutter #design-system #mobile-ui #widget #animations

License

MIT (license)

Dependencies

flutter, flutter_animate, freezed_annotation, json_annotation, maplibre_gl, oh_my_flutter

More

Packages that depend on mateo_mobile