Deep linking in Flutter

Поделиться
HTML-код
  • Опубликовано: 27 дек 2022
  • Learn how deep links help your Flutter app and your users, and see how to add deep links to your Flutter app.
    Deep linking → goo.gle/3YX6P88
    Navigation and routing → goo.gle/3VXNQIA
    DartPad example→ goo.gle/3FOZqR3
    Introduction to deep links (Android Developers channel) → goo.gle/3PibIo8
    Universal links (Apple Developer) → goo.gle/3PBlNwt
    Deep links (Google Ads Help) → goo.gle/3We5IiE
    Play Console Deep Link Page → goo.gle/3SMYOiU
    Google Ads Deep Link Validator → goo.gle/3SQbJjA
    Google Ads Impact Calculator → goo.gle/3MbEd5c
    Don’t miss an episode, subscribe to Flutter → goo.gle/FlutterYT
    #Flutter

Комментарии • 45

  • @flutterdev
    @flutterdev  Год назад +11

    Subscribe for the latest →

  • @akvus
    @akvus Год назад +84

    It's a pity that iOS is neglected at this video. Many of Flutter devs are coming with Android background and so iOS explanation would be appriciated by more developers.

  • @WhatifHistoryTv
    @WhatifHistoryTv Год назад +6

    flutter is a CROSS PLATFORM framework NOT android framework only where's the iOS instructions??

  • @franmaric
    @franmaric Год назад +3

    You shouldn't have neglected iOS...

  • @ExtraServingsBTS

    dartpad link is dead.

  • @eKizify
    @eKizify Год назад +13

    Implementing deeplinks atm without go_router no official guides have any instructions on that so we had to read go_router source code to do the implementation. The deeplinks documents also contain very little information the key take away is just to use go_router… could you as in flutter team please provide instructions on how to implement deeplink in the suggested way in the guides and update the guides overall

  • @ObinnaWGMI
    @ObinnaWGMI Год назад +5

    Flutter all the way to the top

  • @bytcra4416

    Did they just skipped a platform (IOS) on 'how to build a feature in a cross platfrom buiding technology video??

  • @lilmnm616

    What if the deeplink to the app doesnt have a website counter part? how would someone be pushed to install the app with the deeplink for something like a referral link?

  • @neiljaywarner7268
    @neiljaywarner7268 Год назад +3

    dos anyone have a link for the "twice as likely to perform the action on mobile than on mobile web with the same content? that's awesome

  • @alejandrombc

    How do you implement a deferred deep link? (To allow redirect after the app store install)

  • @voncth5791
    @voncth5791 Год назад +1

    GAWDAMN i love you flutter!! Thx so much!

  • @antoniocruz5203
    @antoniocruz5203 Год назад +2

    Wow, right now i am reading in docs about deep link 👏

  • @Alon_404
    @Alon_404 Год назад +1

    thanks for flutter team :)

  • @ploploplop
    @ploploplop Год назад

    Thank you for the video. I have one question: how do we handle different subdomains or variable hosts? Is there a recommended strategy to handle this?

  • @user-kw4kp7eq9m
    @user-kw4kp7eq9m Год назад +1

    Thank you very much!

  • @abdifatahnour4191
    @abdifatahnour4191 Год назад +2

    Thank you flutter team.

  • @yakki_addition4795
    @yakki_addition4795 Год назад +1

    That's what i looking for 🔥🔥🔥🔥

  • @kms12317

    When clicking a link in yahoo or gmail app the open doesn't opened but when using adb command it works , Must create assetlinks file ? and where should be hosted if I didn't have a flutter web ,Can upload it in another project such as php with the same domain

  • @kindalame9894
    @kindalame9894 Год назад

    I'm not sure if I understand what new do deep-links bring to the table, in terms of implementation. Can't I emulate their behavior by overriding a onTap callback from a push notification (using for example the flutter_local_notifications plugin), parse the notification data and then call Navigator.of(context).pushNamed()? How exactly deep-links ease this implementation? Do they kinda implement this logic internally and call onGenerateRoute automatically?