matrix_input 1.0.0 copy "matrix_input: ^1.0.0" to clipboard
matrix_input: ^1.0.0 copied to clipboard

outdated

A package that leverages on the power of flutter widgets to display data in matrix form.

matrix_input #

A package that leverages on the power of flutter widgets to display data in matrix form.

Getting Started #

Instead of hard coding the widgets to represent matrices, let this package make life bearable for you!

Features #

Use this package in your flutter app to:

  • Place data i.e. numbers in matrix form.
  • Perform arithmetic operations.
  • Build puzzles which requires numbers displayed in matrix form.
  • Teach i.e. perfect squares.

Setup #

Import it in your project:

import 'package:matrix_input/matrix_input.dart';

Usage Examples #

  • 1x3 Matrix

pic4

class _MatrixState extends State

@override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text('matrix_input'), ), body: Center( child: Row( mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.center, children:

  • 3x3 Matrix

pic1

  • 4x4 Matrix

pic2

  • 5x5 Matrix

pic3

Most importantly, bundle it in either a row or column.

Note: the "matrixController" is required. Just like a normal TextEditingController.

Thus, declare your TextEditingController textEditingController;

Make sure to initialize it in the init() section. Refer to example folder.

2
likes
0
pub points
0%
popularity

Publisher

unverified uploader

A package that leverages on the power of flutter widgets to display data in matrix form.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on matrix_input