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

discontinued
outdated

Mixins is a package for shortening the use of some widgets or properties.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Welcome to Mixins',
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Welcome to Mixins'),
        ),
        body: Center(
            child: Container(
          margin: Ei.all(15),
          padding: Ei.sym(v: 15),
          decoration: BoxDecoration(border: Br.only(['t'], color: Colors.white), borderRadius: Br.radius(5)),
          child: Column(
            children: [
              Textr(
                'Hello World',
                padding: Ei.sym(v: 10, h: 25),
              ),
            ],
          ),
        )),
      ),
    );
  }
}
7
likes
0
points
5
downloads

Publisher

unverified uploader

Weekly Downloads

Mixins is a package for shortening the use of some widgets or properties.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_native_image, http, intl, path_provider, stack_trace, update

More

Packages that depend on mixins