tf_pageGoTo method

Widget tf_pageGoTo()

Implementation

Widget tf_pageGoTo() {
  return TextFieldFastor(
    text_color: Colors.black,
    decorationBackground: BoarderHelper.box(
      // radiusSize: 0,
      // colorBackground: Colors.transparent,
      colorLine: Colors.black
    ),
    hint_color: Colors.transparent,
    keyboardType: TextInputType.number,
    margin: EdgeInsets.only(left: DSDimen.space_level_3 ),
    padding: EdgeInsets.all( 7 ),
    controller:  tf_goto_controller,
    //savge change
    onChanged: (s){

      updateGoToPage(s );

    },
      width: 60
  );

}