dotted_box 0.0.3 copy "dotted_box: ^0.0.3" to clipboard
dotted_box: ^0.0.3 copied to clipboard

A flutter package which will help you to generate dotted box. Can be useful for form designs which includes attachment sections.

pub package

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 #

  1. Import the package.
 import 'package:dotted_box/dotted_box.dart';
  1. 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,
                ),
              ],
            ),
          ],
        ),
      ),
    );
  }
}
6
likes
150
pub points
66%
popularity
screenshot

Publisher

verified publishercooltechie.info

A flutter package which will help you to generate dotted box. Can be useful for form designs which includes attachment sections.

Repository (GitHub)
View/report issues

Topics

#dotted-border #dotted-box #dotted #outline

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on dotted_box