flutter_placeholder_textlines icon indicating copy to clipboard operation
flutter_placeholder_textlines copied to clipboard

add property is lineSpaceHeight and borderRadius and animate duration.

Open azeek opened this issue 3 years ago • 0 comments

  • lineSpaceHeight

    • you can set the line spacing size.
  • borderRadius

    • you can create placeholders with rounded corners.
  • animateDuration

    • add animation Speed.
  • A sample project was created for the latest flutter version.

  • sample code

  Widget _buildLineSpaceHeightOrRadiusOrAnimateDuration() {
    return Container(
      width: 300,
      child: PlaceholderLines(
        count: 3,
        animate: true,
        color: Colors.purple,
        lineSpaceHeight: 2,
        borderRadius: BorderRadius.circular(8.0),
        animateDuration: const Duration(seconds: 5),
      ),
    );
  }
  • default image_1

  • new image_2

azeek avatar Feb 15 '22 03:02 azeek