adeptabhi_widgets 1.0.2
adeptabhi_widgets: ^1.0.2 copied to clipboard
A customizable data table with editable cells, dropdowns, and tab bar.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add adeptabhi_widgets
With Flutter:
$ flutter pub add adeptabhi_widgets
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
adeptabhi_widgets: ^1.0.2
Alternatively, your editor might support dart pub get
or flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:adeptabhi_widgets/_main.dart';
import 'package:adeptabhi_widgets/_test/bloc/data_table_bloc.dart';
import 'package:adeptabhi_widgets/_test/bloc/dropdown_bloc.dart';
import 'package:adeptabhi_widgets/_test/bloc/textfield_bloc.dart';
import 'package:adeptabhi_widgets/_test/logic/msg.dart';
import 'package:adeptabhi_widgets/_test/model/data_table_mdl.dart';
import 'package:adeptabhi_widgets/_test/model/util_mdl.dart';
import 'package:adeptabhi_widgets/_test/route/routes.dart';
import 'package:adeptabhi_widgets/_test/route/routes_name.dart';
import 'package:adeptabhi_widgets/_test/scr/presentation/data_table_scr.dart';
import 'package:adeptabhi_widgets/_test/scr/presentation/dropdown_scr.dart';
import 'package:adeptabhi_widgets/_test/scr/presentation/route_list_scr.dart';
import 'package:adeptabhi_widgets/_test/scr/presentation/tabbar_scr.dart';
import 'package:adeptabhi_widgets/_test/scr/presentation/textfield_scr.dart';
import 'package:adeptabhi_widgets/_test/scr/util/input_decoration.dart';
import 'package:adeptabhi_widgets/_test/scr/util/styles.dart';
import 'package:adeptabhi_widgets/_test/scr/util/widget.dart';
import 'package:adeptabhi_widgets/view/adept_data_table.dart';
import 'package:adeptabhi_widgets/view/adept_drop_down.dart';
import 'package:adeptabhi_widgets/view/adept_tabbar_out.dart';
import 'package:adeptabhi_widgets/view/adept_tapbar_in.dart';
import 'package:adeptabhi_widgets/view/adept_text_field.dart';