blurhash 1.0.0 copy "blurhash: ^1.0.0" to clipboard
blurhash: ^1.0.0 copied to clipboard

outdated

A very compact representation of a placeholder for an image.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'home_page.dart';
import 'blurhash_image_page.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: DefaultTabController(
        length: 2,
        child: Scaffold(
          appBar: AppBar(
            bottom: TabBar(
              tabs: [
                Tab(text: "Home"),
                Tab(text: "BlurHash Image"),
              ],
            ),
            title: Text('BlurHash Example'),
          ),
          body: TabBarView(
            children: [HomePage(), BlurHashImagePage()],
          ),
        ),
      ),
    );
  }
}
67
likes
0
pub points
90%
popularity

Publisher

verified publisherraincal.com

A very compact representation of a placeholder for an image.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

blurhash_web, flutter

More

Packages that depend on blurhash