Open in app

Sign In

Write

Sign In

Nguyen Seven
Nguyen Seven

50 Followers

Home

About

Jul 4, 2021

Print large strings in Flutter

If you get kind of frustrated when debugging. Fetched a resource from an API and wanted to print the JSON string to the console, but it kept cutting off the string. Example: Here is my solution, you can make your own print. Define this method /// Print Long String void printLongString(String text) { final RegExp pattern = RegExp('.{1,800}'); // 800 is the size of each chunk pattern.allMatches(text).forEach((RegExpMatch match) => print(match.group(0))); }

1 min read

Print large strings in Flutter
Print large strings in Flutter

1 min read


Jun 30, 2021

Thanks! Amazing article.

Thanks! Amazing article.

1 min read

1 min read


Dec 11, 2020

IOS — Configure https for WKWebview URL

If you have problem when try to change the base url from http to https in your iOS app. Here is my solution Open info.plist Update info.plist file like this:

IOS

1 min read

IOS — Configure https for WKWebview URL
IOS — Configure https for WKWebview URL
IOS

1 min read


Dec 11, 2020

Get SSID (wifi name) with Swift iOS (IOS 13)

The first one, we need to enable the Access WiFi Information capability in Xcode With iOS < 13, we can use CNCopyCurrentNetworkInfo() . import SystemConfiguration.CaptiveNetwork

IOS

2 min read

Get SSID (wifi name) with Swift iOS (IOS 13)
Get SSID (wifi name) with Swift iOS (IOS 13)
IOS

2 min read

Nguyen Seven

Nguyen Seven

50 Followers

Mobile Developer | iOS | Flutter Developer | Xamarin

Following
  • Thi Tran

    Thi Tran

  • Khoa Nguyen

    Khoa Nguyen

  • Nhan Cao

    Nhan Cao

  • DUBYDU

    DUBYDU

  • Nghia Tran (Silas)

    Nghia Tran (Silas)

See all (59)

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech

Teams