Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 504 Bytes

File metadata and controls

19 lines (14 loc) · 504 Bytes

gesture_detector_and_animated_container

A new Flutter project.

Getting Started

Example Animated Container :

AnimatedContainer(
    color: Color.fromARGB(255, random.nextInt(256), random.nextInt(256),
        random.nextInt(256)),
    duration: Duration(seconds: 1),
    width: 50.0 + random.nextInt(101),
    height: 50.0 + random.nextInt(151),
  )

Gesture Detector have so many properties you can see from here