use of bisq.desktop.components.TxIdTextField in project bisq-desktop by bisq-network.
the class FormBuilder method addLabelTxIdTextField.
public static Tuple2<Label, TxIdTextField> addLabelTxIdTextField(GridPane gridPane, int rowIndex, String title, String value, double top) {
Label label = addLabel(gridPane, rowIndex, title, top);
TxIdTextField txTextField = new TxIdTextField();
txTextField.setup(value);
GridPane.setRowIndex(txTextField, rowIndex);
GridPane.setColumnIndex(txTextField, 1);
gridPane.getChildren().add(txTextField);
return new Tuple2<>(label, txTextField);
}
Aggregations