A flutter package which will help you to generate dotted box. Can be useful for form designs which includes attachment sections.
Features
- Highly customizable
- Easy to use
Getting started
- Import the package.
import 'package:dotted_box/dotted_box.dart';
- Use the widget in your code.
DottedBox(
height: 350,
width: 350,
borderThickness: 4,
borderColor: Colors.blue,
borderRadius: 20,
space: 3,
borderShape: Shape.circle,
dashCounts: 36,
),
Usage
This full code is from the example folder. You can run the example to see.
import 'package:flutter/material.dart';
import 'package:dotted_box/dotted_box.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Flutter Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.white,
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: Text(widget.title),
),
body: const Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Stack(
alignment: Alignment.center,
children: [
DottedBox(
height: 350,
width: 350,
borderThickness: 4,
borderColor: Colors.blue,
borderRadius: 20,
space: 3,
borderShape: Shape.circle,
dashCounts: 36,
),
],
),
],
),
),
);
}
}