flutter_drawable_mipmap 1.0.1 copy "flutter_drawable_mipmap: ^1.0.1" to clipboard
flutter_drawable_mipmap: ^1.0.1 copied to clipboard

outdated

Flutter plugin that provides custom widget to show drawable and mipmap from android.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_drawable_mipmap/image_widget.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text("Flutter Drawable Mipmap"),
        ),
        body: Column(
          children: [Drawable("android"), Mipmap("ios")],
        ),
      ),
    );
  }
}
0
likes
0
pub points
57%
popularity

Publisher

verified publishersharmadhiraj.com

Flutter plugin that provides custom widget to show drawable and mipmap from android.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_drawable_mipmap