child1_expanded_child2_wrapWidth static method

  1. @Deprecated("Under Testing")
Row child1_expanded_child2_wrapWidth(
  1. Widget child1,
  2. Widget child2
)

Implementation

@Deprecated( "Under Testing")
static Row child1_expanded_child2_wrapWidth ( Widget child1, Widget child2){
  return Row(
    children: [
      Expanded(child: child1 ),
      child2
    ],
  );
}