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

A Flutter plugin for support image_size_getter.

example/lib/main.dart

import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

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

  final String title;

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

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Column(
      children: [
        TextButton(
          onPressed: _showTextSize,
          child: const Text('Press me to get asset image size'),
        ),
      ],
    );
  }

  void _showTextSize() {}
}
1
likes
120
pub points
11%
popularity

Publisher

unverified uploader

A Flutter plugin for support image_size_getter.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter, image_size_getter

More

Packages that depend on image_size_getter_flutter