v1.0.1flutter_json_viewer
Flutter용 Json 뷰어 위젯입니다. 확장 가능한 목록에서 Json 데이터를 표시합니다. 스마트폰에서 데이터를 쉽게 읽을 수 있도록 합니다.
22좋아요 5.7천30일 다운로드140Pub 점수
AndroidiOSWebmacOSWindowsLinux
JSON 객체를 표시하는 위젯
{"sdk":"flutter"}{"sdk":"flutter"}아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
A Json viewer widget for flutter. Updated with null safety and added support for Array in the root level.
Forked from flutter_json_widget
The /example/ folder in the GitHub repo
contains a full Flutter app with demo examples.
Add this to your package's pubspec.yaml file:
dependencies:
flutter_json_viewer: ^1.0.1
You can install packages from the command line:
with Flutter:
$ flutter pub get
Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.
Now in your Dart code, you can use:
import 'package:flutter_json_viewer/flutter_json_viewer.dart';
Container(
child: JsonViewer(jsonObj)
)
Demo