All Projects â†’ Frezyx â†’ flutter_json_view

Frezyx / flutter_json_view

Licence: MIT License
📄 Displaying json models in a Flutter widget

Programming Languages

dart
5743 projects
C++
36643 projects - #6 most used programming language
CMake
9771 projects
HTML
75241 projects
c
50402 projects - #5 most used programming language
swift
15916 projects

Projects that are alternatives of or similar to flutter json view

Motion-Tab-Bar
A beautiful animated flutter widget package library. The tab bar will attempt to use your current theme out of the box, however you may want to theme it.
Stars: ✭ 237 (+746.43%)
Mutual labels:  widget, flutter-widget, flutter-ui
buttons tabbar
A Flutter package that implements a TabBar where each label is a toggle button.
Stars: ✭ 49 (+75%)
Mutual labels:  flutter-widget, flutter-ui
incrementally loading listview
An extension of the Flutter ListView widget for incrementally loading items upon scrolling
Stars: ✭ 172 (+514.29%)
Mutual labels:  widget, flutter-widget
survey kit
Flutter library to create beautiful surveys (aligned with ResearchKit on iOS)
Stars: ✭ 68 (+142.86%)
Mutual labels:  flutter-widget, flutter-ui
FlutterLoadingGIFs
Loading indicator GIFs. Material and Cupertino (Android and iOS) loading indicators in assorted sizes. Use as placeholders for loading remote image assets. Demo: https://gallery.codelessly.com/flutterwebsites/loadinggifs/
Stars: ✭ 28 (+0%)
Mutual labels:  flutter-widget, flutter-ui
flutter todos
A cross platform todo list app using flutter, sqlite etc. If you read the code, you will understand how to create simple elegant mobile app using Flutter and Dart language.
Stars: ✭ 60 (+114.29%)
Mutual labels:  flutter-widget, flutter-ui
overflow view
A widget displaying children in a line until there is not enough space and showing a the number of children not rendered.
Stars: ✭ 136 (+385.71%)
Mutual labels:  flutter-widget, flutter-ui
instagram-text-editor
An Instagram like text editor Flutter widget that helps you to change your text style.
Stars: ✭ 66 (+135.71%)
Mutual labels:  widget, flutter-widget
shimmer animation
This shimmer animation widget can help you bring simple yet beautiful skeleton loaders to your flutter app with ease.
Stars: ✭ 29 (+3.57%)
Mutual labels:  flutter-widget, flutter-ui
chatKit
Open Source React Chat Widget. Ready for use and can be connected to any backend like Chatbot/NLP/Live Chat engine or messenger.
Stars: ✭ 42 (+50%)
Mutual labels:  widget, ui-components
sliding panel
A Flutter slidable widget that provides an easy to use configuration. Highly customisable. Just as you want it!
Stars: ✭ 88 (+214.29%)
Mutual labels:  flutter-widget, flutter-ui
liquid button
Liquify your buttons, web demo at website
Stars: ✭ 18 (-35.71%)
Mutual labels:  flutter-widget, flutter-ui
dough
This package provides some widgets you can use to create a smooshy UI.
Stars: ✭ 518 (+1750%)
Mutual labels:  flutter-widget, flutter-ui
rainbow container
🌈 A magical container which changes colors whenever its build method is called.
Stars: ✭ 21 (-25%)
Mutual labels:  flutter-widget, flutter-ui
IIT-BHU-app
The official app for managing activities at the Indian Institute of Technology (BHU), Varanasi.
Stars: ✭ 17 (-39.29%)
Mutual labels:  flutter-widget, flutter-ui
flex color scheme
A Flutter package to make and use beautiful color scheme based themes.
Stars: ✭ 370 (+1221.43%)
Mutual labels:  flutter-widget, flutter-ui
flutter-app
Full Feature Todos Flutter Mobile app with fireStore integration.
Stars: ✭ 138 (+392.86%)
Mutual labels:  flutter-widget, flutter-ui
custom radio grouped button
Custom Flutter widgets that makes Checkbox and Radio Buttons much cleaner and easier.
Stars: ✭ 144 (+414.29%)
Mutual labels:  flutter-widget, flutter-ui
Interactive-Add-Button-Layout
Custom Layout with interactive add button to impove your UI and UX .
Stars: ✭ 20 (-28.57%)
Mutual labels:  flutter-widget, flutter-ui
Flutter-Photography-Application
Flutter Photography Application Design and Animation - day 22
Stars: ✭ 73 (+160.71%)
Mutual labels:  flutter-widget, flutter-ui

Displaying json models in a Flutter widget

😎 Cool solution for viewing models in debug working


Image Image Image

Getting Started

Add dependency

dependencies:
  flutter_json_view: ^0.3.0

Add import package

import 'package:flutter_json_view/flutter_json_view.dart';

Easy to use

Add one of the constructors in your code

String constructor

JsonView.string('{"key":"value"}'),

Asset file constructor

JsonView.asset('assets/data.json'),

Map constructor

JsonView.map({"key":"value"}),

Customization

🎨 The package was created in order to be able to customize your json view

drawing

JsonView.string(
    '{"key":"value"}',
    theme: JsonViewTheme(
      keyStyle: TextStyle(
        color: Colors.black54,
        fontSize: 16,
        fontWeight: FontWeight.w600,
      ),
      doubleStyle: TextStyle(
        color: Colors.green,
        fontSize: 16,
      ),
      intStyle: TextStyle(
        color: Colors.green,
        fontSize: 16,
      ),
      stringStyle: TextStyle(
        color: Colors.green,
        fontSize: 16,
      ),
      boolStyle: TextStyle(
        color: Colors.green,
        fontSize: 16,
      ),
      closeIcon: Icon(
        Icons.close,
        color: Colors.green,
        size: 20,
      ),
      openIcon: Icon(
        Icons.add,
        color: Colors.green,
        size: 20,
      ),
      separator: Padding(
        padding: EdgeInsets.symmetric(horizontal: 8.0),
        child: Icon(
          Icons.arrow_right_alt_outlined,
          size: 20,
          color: Colors.green,
        ),
      ),
    ),
  ),

More examples you can see here

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].