×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: Text
Posted by: JORGE ALCALA
Added: Mar 24, 2021 4:20 PM
Views: 4529
Tags: no tags
  1.      floatingActionButton: Visibility( // floating
  2.           visible: general.hasCredencial('rrrr') && !_enProceso && _agregarPoder,
  3.           child: FloatingActionButton(
  4.             child: Icon(Icons.add),
  5.             onPressed: () async {
  6.               // ProveedorModel _provNuevo = await Navigator.push(
  7.               //   context,
  8.               //   MaterialPageRoute(
  9.               //     builder: (BuildContext context) =>
  10.               //         prEditarSc(claProveedor: 0),
  11.               //   ),
  12.               // );
  13.               // if (_provNuevo != null) {
  14.               //   control.proveedoresAgregar(_provNuevo);
  15.               //   _filtrar(_filter.text);
  16.               // }
  17.             },
  18.           )
  19.           ),