shimmer_border_container 1.0.1 copy "shimmer_border_container: ^1.0.1" to clipboard
shimmer_border_container: ^1.0.1 copied to clipboard

A customizable shimmer border container for Flutter with resizable components and customizable content.

example/main.dart

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

void main() {
  runApp(const MaterialApp(
    debugShowCheckedModeBanner: false,
    home: Scaffold(
      backgroundColor: Color(0xFF0F1113),
      body: Center(
        child: ShimmerBorderContainer(
          width: 280,
          height: 70,
          borderRadius: 12,
          borderWidth: 1.0,
          shimmerDuration: Duration(seconds: 1),
          shimmerColor: Colors.white,
          child: Text(
            'Join Community',
            style: TextStyle(
              fontSize: 22,
              color: Colors.white,
              fontWeight: FontWeight.w500,
            ),
          ),
        ),
      ),
    ),
  ));
}
7
likes
140
points
19
downloads

Publisher

unverified uploader

Weekly Downloads

A customizable shimmer border container for Flutter with resizable components and customizable content.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on shimmer_border_container