device_scan_animation 0.0.6 copy "device_scan_animation: ^0.0.6" to clipboard
device_scan_animation: ^0.0.6 copied to clipboard

Device scan animation.

example/lib/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const MyHomePage(),
    );
  }
}

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: DeviceScanWidget(),
      ),
    );
  }
}
5
likes
120
pub points
57%
popularity

Publisher

unverified uploader

Device scan animation.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on device_scan_animation