bitmap_texture 0.0.2 copy "bitmap_texture: ^0.0.2" to clipboard
bitmap_texture: ^0.0.2 copied to clipboard

BitMap is an alternative to Image.file, achieving higher performance image display.

example/lib/main.dart

import 'package:bitmap_texture/bitmap_texture.dart';
import 'package:bitmap_texture_example/album.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Album(),
        // body: BitMap(
        //   path: "1",
        //   width: 200,
        //   height: 200,
        // ),
      ),
    );
  }
}
2
likes
40
pub points
0%
popularity

Publisher

unverified uploader

BitMap is an alternative to Image.file, achieving higher performance image display.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter, storages

More

Packages that depend on bitmap_texture