dghub_image 1.0.8 copy "dghub_image: ^1.0.8" to clipboard
dghub_image: ^1.0.8 copied to clipboard

Min Thant Htet.

example/lib/main.dart

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

Future<void> main() async {
  await DGHubImage.init();
  DGHubImage.clearCache();
  runApp(const MyApp());
}

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key, required this.title});

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        backgroundColor: Theme.of(context).colorScheme.inversePrimary,
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            DGHubImage(autoLoad: 'autoLdddddddddddoad'),
            DGHubImage.network(
                width: 200,
                height: 200,
                load:
                    'https://st2.depositphotos.com/2001755/8564/i/450/depositphotos_85647140-stock-photo-beautiful-landscape-with-birds.jpg')
          ],
        ),
      ),
    );
  }
}
1
likes
140
pub points
4%
popularity

Publisher

unverified uploader

Min Thant Htet.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-2-Clause (LICENSE)

Dependencies

flutter, http, path_provider, shimmer

More

Packages that depend on dghub_image