SizedBoxResponsive.expand constructor

const SizedBoxResponsive.expand({
  1. Key? key,
  2. Widget? child,
})

Creates a box that will become as large as its parent allows.

Implementation

const SizedBoxResponsive.expand({Key? key, Widget? child})
    : super(
        key: key,
        child: child,
        width: double.infinity,
        height: double.infinity,
      );