Hacker News new | ask | show | jobs
by capableweb 1228 days ago
> the Ads app is the same as AdWords on web

Clearly not, the AdWords on the web is rendered using the DOM, while a Flutter application will be rendered via a canvas DOM element.

You can try this yourself by opening up the inspector.

Where the ads are mostly shown, is also built using normal (in the web sense) DOM elements, either images or text, rather than Flutter canvas elements.

1 comments

By "same," I did not mean technologically; as I pointed out in my other comment, I know AdWords is made with AngularDart while the Ads app is made with Flutter.

By "same," I meant they are equivalent in functionality (or nearly so, based on the differences between larger and smaller UI sizes). Both AdWords the Website and Ads the Mobile App are all part of the same Google AdWords the Product.

Both having common Dart code, although not common UI is probably still good win for a lot of things.