Skip to content

Edivri/rc_control

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Ā 

History

2 Commits
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 

Repository files navigation

rc_control

Control button with adjustable sections

About this package

This widget will allow you to create templates for different kind of controllers.

Variables

Variable Type Required
externalDiameter double yes
internalDiameter double yes
mainAction Function yes
sections List yes
elevation double optional
dividerThickness double optional
externalColor Color optional
internalColor Color optional
dividerColor Color optional
shadowDirection Offset optional
sectionOffset FixedAngles optional

Images

Basic More Sections Customizable

Usage

To use this plugin, add control_button as a dependency in your pubspec.yaml file

dependencies:
  control_button: ^0.0.2

Install it

$ flutter pub get

Import it

import 'package:control_button/control_button.dart';

Example

See example/example.dart

ControlButton(
  sectionOffset: FixedAngles.Zero,
  externalDiameter: 300,
  internalDiameter: 120,
  dividerColor: Colors.blue,
  elevation: 2,
  externalColor: Colors.lightBlue[100],
  internalColor: Colors.grey[300],
  mainAction: () => updateState('Selected Center'),
  sections: [
    () => updateState('Selected 1'),
    () => updateState('Selected 2'),
    () => updateState('Selected 3'),
    () => updateState('Selected 4'),
  ],
)

About

PackagešŸ“¦ forRobot Car Controller UI

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages