gelin

Last updated:

0 purchases

gelin Image
gelin Images
Add to Cart

Description:

gelin

Gelin #
Package generates random doted lines in area defined by a circle.

Features #

Random doted lines generation within random ar defined segments of a circle.
Widget for representation on generated lines.

Getting started #
TODO: List prerequisites and provide or point to information on how to
start using the package.
Usage #
class _MyPageState extends State<MyPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: SafeArea(
child: Column(
children: [
const SizedBox(
height: 100,
),
SizedBox(
height: 400,
width: 400,
child: () {
// Calling in random generator
var gen = ArcminGenerator();
// Building a widget
return CurvesPlotter()
.plot(distort: true, curvesGenerator: gen);
}(),
),
const SizedBox(
height: 100,
),
SizedBox(
height: 100,
width: 100,
child: FloatingActionButton(
onPressed: () => setState(() {}),
child: const Icon(Icons.sync)),
)
],
),
),
);
}
}

copied to clipboard
Additional information #

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.