Skip to content
This repository was archived by the owner on Mar 12, 2022. It is now read-only.
This repository was archived by the owner on Mar 12, 2022. It is now read-only.

Adaptive banner not getting size properly #131

Description

@erperejildo
return SafeArea(
            child: Stack(
              children: [
                Column(
                  children: <Widget>[
                    Provider.of<AdState>(context).initialized
                        ?
                        Container(
                            color: Theme.of(context).primaryColor,
                            width: double.infinity,
                            height: 150, // just to test it
                            child: BannerAd(
                              builder: (context, child) {
                                return child;
                              },
                              size: BannerSize.ADAPTIVE,
                            ),
                          )
                        : Container(),
                    Expanded(child: child!),
                  ],
                ),
              ],
            ),
          );

Simulator Screen Shot - iPhone 13 - 2022-01-30 at 13 03 00

Shouldn't it cover more of the blue and/or the black area?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions