I'm working on a Flutter project and need guidance on coding a UI that includes a divider with a button situated between the divider. Could someone provide a code example or share insights on the best approach to achieve this layout in Flutter?

/// DIVIDER
// Todo: Button along with Divider
const Divider(
height: 16,
thickness: 2,
color: Color(0xffeaecf0),
),

You can use the
Stackwidget for that!The output will be something like this: