Home > Enterprise >  Launch link in flutter
Launch link in flutter

Time:02-18

i would like to launch custom dynamic links..

i have getter which load string text from database, this string text is user input with them IG username bio is IG username, exsample @instagram

 String getBio(String bio) {
if (widget.isMyProfile) {
  return bio;
} else if (bio == "") {
  return "";
} else {
  return bio;
}

}

i want to have static link "**enter image description here

here is error pic @Carlos Sandoval

CodePudding user response:

Maybe you need this package to run link: https://pub.dev/packages/url_launcher

  • Related