Baseflow / Baseflow/screenrecorder

Speed up recording after generating gif

Open
#36 2 comments 0 reactions 0 assignees View on GitHub
Dominant language
Dart
Stars
77
Forks
35
PR merge metrics
No merged PRs in 30d

Description

Added this widget on the videoplay, then recorded, and the final generated gif speeded up

`

SizedBox(
width: w-80,
height: h-80,
child: ListView.builder(
itemCount: h~/10 - 8,
padding: EdgeInsets.zero,
physics: const NeverScrollableScrollPhysics(),
shrinkWrap: true,
itemBuilder: (context,index){
return SizedBox(
height: h/10 - 8,
child: ListView.builder(
itemCount:w~/10 - 8,
padding: EdgeInsets.zero,
physics: const NeverScrollableScrollPhysics(),
shrinkWrap: true,
scrollDirection: Axis.horizontal,
itemBuilder: (ctx,ind){
return ClipRRect(
child: Container(
width: w~/10 - 8,height: h~/10 - 8,
color: listcolor[Random().nextInt(listcolor.length-1)],
child: Stack(
children: [
Positioned.fill(
child: BackdropFilter(
filter: ImageFilter.blur(sigmaX: 10, sigmaY: 10),
child: Text(''),
)
),
],
)
),
);
},
),
);
},
),
)

`

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.