Flutter listview example. I want to build a list, dynamically, from that json object.

Flutter listview example. builder) to implement a chat.
Flutter listview example I'm learning Flutter and was looking for a searchable list which @Vinoth Kumar example does perfectly. code snippet original Jul 19, 2018 · There's an example in the Flutter documentation that's actually this very situation (navigation to next page on item click). separated In Flutter, you can use ListView. In this article, we are going to create a ListView and apply the Options menu to it. custom; 具体的な例を通してそれぞれの利用方法を見ていきましょう。 1. builder that Sep 27, 2022 · I am fairly new to using REST API to GET data and display in a Listview in Flutter. desktop platforms each item will have a drag handle added on top of it that will allow the user to grab it to move the item. flutter-apps flutter-demo flutter-examples flutter-listview dart-package listview-flutter. Look at below code. I have since been working on something like this, But i get Lost along the line. Updated Jun 26, 2021; Dart; VishnuKC1105 / yellowclass_mp. Nov 19, 2023 · The Flutter ListView widget is a common scrolling widget that helps to put multiple items under it and provides either horizontal or vertical scrolling. Dec 12, 2024 · Flutter’s ListView and GridView widgets are essential tools for creating dynamic, scrollable lists and grids in your applications. builder( itemBuilder: (BuildContext context, int index) { }, ), Now in the curly braces, we have to return any widget and for this tutorial, we will return the custom card widget we made. Aug 11, 2021 · ListView in flutter is nothing but a scrollable list of widgets arranged linearly. Using ListView. Or you can also make Jun 26, 2024 · The standard ListView constructor works well for small lists. -----🐱‍💻 Using GetX (Get) for Navigation and Routing in Flutter; How to create a Filter/Search ListView in Flutter; Great Plugins to Easily Create Animations in Flutter; Best Libraries for Making HTTP Requests in Flutter; You can also check out our Flutter category page, or Dart category page for the latest tutorials and examples. By default its vertical scroll direction. Listview is one of the most usable widget types that can be used anywhere. We learned how to add separate lines in each item, how to register touch events in the list items, and how to add items to the ListView using Stateful widgets. I followed this code Flutter ListView lazy loading But didn't achieve what I want. initState(); _controller May 10, 2021 · Flutter ExpansionTile. Features Easy creation of chat dialog. Here is my sample code which I was used. For showing lengthy lists of stuff, such as contacts, goods, or articles, this may be quite helpful. Add mainAxisSize: MainAxisSize. El segundo es el listview normal que renderiza todos los elementos desde el inicio, por lo que si la cantidad de elementos en su interior es demasiado grande este demorará en cargar. connect(uri). builder is ideal when you need to display a large or dynamic list of items efficiently. This works the Dec 4, 2023 · body: ListView. builder(), Now one required argument in this widget is itemBuilder which will build our card views. Mar 27, 2018 · Create a ListView. dart file and execute to check how it works. min to Column. Star 0. With the ListView Builder I show how to display the list, add entries to the list, and remove entries from the list. The first child of Column will be a button to expand and Second will be ExpandableContainer. builder. ListView is a type of widget in Flutter used to display a list of items in a scrollable column or row. Made with GridView, Drawer, List Avoid using a builder that returns a previously-constructed widget; if the list view's children are created in advance, or all at once when the ListView itself is created, it is more efficient to use the ListView constructor. so we should use a list view for that. Exploring the types of ListView Jul 4, 2018 · Introduction to ListView in Flutter. The ListView, the ScrollBar and the GridView use the available viewport with Future builder objects i. Let’s take a stroll through this powerful widget, its use cases, benefits, and how you can sprinkle it into your next Flutter project. In this example, while navigating to DetailScreen, we also pass data. Send data to a new screen - flutter. 5 Sep 8, 2020 · you should have a list for is checked, and assign them individually to each item. builder by removing it, everything became expandable by default and run smoothly. I've split the code into different files and reduced the HomePage body into several methods to make it more maintainable/readable for myself and I figured it would be worth sharing. Same issue in SliverChildBuilderDelegate delegate which provide by SliverList. please notice shrinkWrap: true and Container height You can refactor inner part to another widget . The basic idea to implement fetching and displaying data from REST Sep 4, 2019 · The following is Nested ListView example. separated to easily create a list view Jan 6, 2022 · Firstly, you should remove the SingleChildScrollView as the ListView child. separated; ListView. To learn more advanced and complex stuff about grid layout in Flutter, take a look at the following articles: Flutter: SliverGrid example; Creating Masonry Layout in Flutter with Staggered Grid View; Flutter: Safety nesting ListView, GridView inside a Column Oct 19, 2021 · Since ListView need all the remaining space in Row, wrap the ListView. builder is used when you have a large number of items to display, ListView. There are different types of ListViews : ListView; ListView. Flutter Tutorial - Search In ListView & Filter ListView With JSON 03 August 2022. In order to reduce the overload of having various layouts performing the same task(In Android, there are a lot of layouts that perform the same task of arranging the elements inside it either vertically or horizontally), the ListView widget has been introduced. Feb 8, 2020 · Flutter animated List view GIF video Introduction to basic layout of this project. only the ones which are on-screen maintain the state and which are not on-screen are either destroyed if they were on-screen at some time or not yet have been created. The ListView widget supports horizontal lists. Simple Flutter ListView Feb 14, 2021 · A flutter ListView in which list items can be grouped to sections. This is what my buildmethod looks like: return Sc Nov 13, 2019 · @papirosnik hey, I'm new to flutter, so please bare with my newbie question ;-) how to convert Stream<Data> to Stream<List<Data>>? my stream comes from websocket (WebSocketChannel. builder? ListView. Sep 27, 2018 · I want to keepAlive my widgets which are already rendered in ListView. Specifically we will be using the ListView builder class from flutter to create a list of. I have a ChatBloc bloc that is responsible to handle new messages from the DataLayer. e, vertical or horizontal. It displays its children one after another in the scroll direction i. For example, each row has a TextField and a Button, and the Button should only be activated when there is input text. builder; ListView. 2+). builder() constructor. Then Make an ExpandableListView which will create a Column. Dashboard Dashboard App UI build using Flutter. The problem is each tab page's height is different and I want the ListView to wrap the tab widget dynamically according to it's height But the TabBarView doesn't accept unbounded height and ListView can't provide a height for it's children. The ListView widget is the most basic type of ListView, ListView. builder constructor. Jun 26, 2024 · You might need to create lists that display different types of content. You can make a dynamically created ListView by using the ListView. builder in Flutter Create Free Backend With Appwrite Introduction. This is what I've made so far, only the top horizontal Dec 14, 2023 · In Flutter, using the Divider widget, you can implement a divider between items or sections in a list. builder() is used to render long or infinite lists, especially lists of data fetched from APIs like products, news, messages, search results… Only visible items of the lists are called to reduce resource (CPU, RAM) consumption and improve performance. e. When you press one of the containers in the listview you should be able to choose an image from the gallery. Also use shrinkWrap:true in ListView. In this example the layout design is very simple, it contain are Three RaisedButton at the bottom of the app, this button consist of child widget as Icon and Texts. We will create a data class for the image data and then use it to create a list of ImageData objects. In this article, we are going to use the Divider Widget to separate each item of a ListView. The widget gets a async method that returns a json object. Here is some code illustrating the NestedScrollView approach. If non-null, the itemExtent forces the children to have the given extent in the scroll direction. Introduction to ListView Before we delve into the ListView widget, it's essential to understand its place in the Apr 16, 2023 · Flutter ListView example with source code – A ListView is really just a collection of widgets that can be scrolled either horizontally or vertically. Data class class Row { String text; bool get enabled => text. In the Fluter, creating a ListView is really easy and pretty straightforward. Whether you’re building a chat app, a gallery, or a product catalog… You can continue learning about Flutter by reading the following articles: Example of CupertinoSliverNavigationBar in Flutter; Flutter SliverAppBar Example (with Explanations) Flutter AnimatedList – Tutorial and Examples; Using NavigationRail and BottomNavigationBar in Flutter; Guide to InteractiveViewer in Flutter Sep 16, 2021 · 2. Mainly listview in flutter is of following Hey gang, in this Flutter tutorial we'll look at the ListView builder to create a list-style layout in our app. In this post, I will show you how to make a simple ListView in Flutter by creating a display-only note application. Here's how you can create such a structure with Flutter: Create a data source with different types of items. Ask Question Asked 7 years, 2 months ago. Both listViews should have text on top of both. Apr 29, 2021 · In this tutorial, I'll show you examples of a few common Flutter ListView patterns. In the cross axis, the children are required to fill the ListView. builder widget. Table of Contents The Strategy Sep 1, 2023 · In Flutter, ListView. builder with a Expanded. This tutorial shows you how to use listview with example. Thanks! – Aug 1, 2022 · Well, here is the recipe for the required logic: Define a variable to contain the id that you would to filter the meals according to. Sep 5, 2021 · In this tutorial we will learn how to create a Listview in Flutter with example. Nov 10, 2021 · In Flutter, ListView is a scrollable list of widgets arranged linearly. Jun 26, 2024 · You might want to create a list that scrolls horizontally rather than vertically. . Just thought I'd post the link to the example in case someone else needed a more full explanation. . Pass the list of items to the children property of ListView widget, and you have a ListView in your Flutter application. ListView is one of the most commonly-used in mobile apps development. flutter create --sample=material. stream) and I want to have a ListView with a log of received messages. builder() constructor creates items as they're scrolled onto the screen. And a single child scrollview also has the scroll. You will learn how to use the ListView object to create and customize increasingly complex lists. 子widgetを順番に並ぶ Mar 24, 2022 · Each item in the listview I will create is stateful. Dec 16, 2024 · ListView is the most commonly used scrolling widget. Hence I need Help with this. This flutter tutorial covers how to create a scroll-able list view. Includes an example of using the ListView with simple widgets, as well as connecting a list to the ListView with ListView Builder. ListView used to show the multiple data one after another in scrolling format in flutter. In contrast to the default ListView constructor, which requires creating all items at once, the ListView. separated is similar to ListView. Features. builder(…) ListView. Modified 3 years, for a more detailed example check this out https: Nov 15, 2020 · I am creating a chat with firebase in flutter and I want that when the listview builder completes it can go to the end of the list (Last message). For the main issue, you should split each item to a separate Widget with its own _expanded state. Jan 19, 2019 · Display a list of items commonly will refer to a widget, named ListView. It displays its children one after another in the scroll direction. To demonstrate how ListView works, we will try to create a simple ListView in Flutter that displays a list of text. builder is enough to provide scrolling to your Scaffold. For example, you might be working on a list that shows a heading followed by a few items related to the heading, followed by another heading, and so on. How will we do that? In this example, when the tap occurs, we use index of ListView and take Note data from _noteList and pass it to DetailScreen constructor. Best Practices, Use Cases, and Examples. As others have said, use the onTap on the item in a ListView. Sound null safety support! Easy creation of chat dialog. Mar 3, 2019 · Di Flutter, untuk membuat widget yang bisa scrollable kita bisa pakai widget ListView. (E. builder but allows you to add separators between items, and ListView. Flutter ListView Examples. Feb 4, 2018 · The documentation page provides only an example how to apply a StickyHeader with a ListView, ok what about the other widgets such as SingleChildScrollView or CustomScrollView? In this example I will provide a very simple StickyHeader with a SingleChildScrollView and sure you can put it inside any SingleChildScrollView you want: Dynamic Flutter Android & iOS ListView . Sep 15, 2023 · We also cover advanced topics like adding functionalities such as scrolling control and optimization techniques. Create a ListView Using the standard ListView constructor is perfect for lists that contain only a few items. Flutter ListView. This allows you to display a popup menu when the user taps a specific area of the ListView. While searching for the solution, I came across this and this and this, that helped me rebuilding the app in a cleaner code, below it is for who is interested: Dec 15, 2017 · I have this widget attached to a Scaffold body. Note: This article was recently updated in order to fix some issues related to outdated stuff and work properly with the most recent versions of Flutter (3. Sep 29, 2024. To work with lists that contain a large number of items, it's best to use the ListView. builder which can be used to generate dynamic contents from external sources. Flutter ListView widget displays a set of items in a scrollable list. so you please simply put this code in main. custom; Constructor of ListView Class: Flutter ListView is a powerful widget that allows you to display a scrollable list of widgets in your app. It’s similar to how you scroll through your contacts on a phone or through posts on a social media app. There are two types of lists: Here is an example use of the ListView: In this project retrieve some user data in JSON format from API service and using that data we create a Flutter ListView. builder is a highly efficient way to create lists that display a large number of items. # A flutter ListView in which list items can be grouped to sections. builder creates a scrollable, linear array of widgets. Types of ListView in Flutter. You can easily reuse these for your own amazing app. Nov 19, 2023 · To create an options menu for a ListView in Flutter, you can use the PopupMenuButton widget along with PopupMenuItem or PopupMenuItemBuilder. In another hand, with itemExtent ListView can easily calculate item to show, for example: index = cashedPositionInPixels / itemExtent. Add Neverscrollable physics to AZListView like Jul 28, 2018 · Flutter provides ListView. My Oct 2, 2022 · Here is a typical flutter example for the ListView of a List. In flutter, it is quite easy to do so. 0 and call it Flutter_view. ListView is flexible and can be used for simple lists as well as more complex ones with different types of items. This will create the ListView items only when they need to be displayed on the screen. To create a ListView we use ListView. It also stores all selected checkbox value(s) into a List variable. builder is used instead of ListView. Jun 17, 2022 · ListView is a very important widget in a flutter. デフォルト生成. Code Apr 19, 2022 · These are the TOP Flutter ListView Widgets! We cover Pull To Refresh, Infinite Scrolling ListView, Nested Columns and ListViews and more. Otherwise, use a CustomScrollView. ReorderableListView. imp Apr 30, 2018 · This is a more general answer for future visitors. The first one is simple, and the second one is a little bit more complicated. A few examples of the ListTile widgets in Flutter. A SimpleDialog is designed to show options in a list (as opposed to an AlertDialog, which is meant to notify the user of something). The problem is that the screen is empty. List Items can be separated in groups. The ListView. Flutter ListView Navigation + Passing Data. Let's create simple expandable Lsitview inside flutter application Sep 3, 2023 · In this article, you will learn how to use AnimatedList through a couple of complete examples. builder on top of another vertical listView. ListView. Jul 17, 2017 · I think it will work as you want. Click here to Subscr May 25, 2018 · Try this: First Make an ExpandableContainer using AnimatedContainer. The list tile contains a leading icon, a title, a subtitle, and a trailing icon. I'm trying to add a horizontal listView. Each section is enriched with well-documented code examples to facilitate a clear understanding and hands-on experience. Also changing tex Sep 28, 2018 · I have a ListView with multiple type of items, one of which is a widget of TabBar and TabBarView. This is fine for a short list but not for a long list. Apr 27, 2023 · If you’d like to explore more new and interesting things about modern Flutter development, take a look at the following articles: Flutter SliverAppBar Example (with Explanations) Flutter AnimatedList – Tutorial and Examples; Flutter: SliverGrid example; Flutter: ListView Pagination (Load More) example; Flutter & Hive Database: CRUD Example Feb 10, 2024 · In this example, we create a simple ListView with three ListTile widgets, each representing an item in the list. It does so by only building the visible items on demand. 0, at ListView. Now, let’s start a project using Android Studio with Flutter 1. Un ListView solo funciona dentro de un Scaffold. Aug 18, 2019 · But there is a different kind of ListView that does support scrollToIndex: ScrollablePositionedList. All of the elements of a static ListView get created at once. We can use it to make a list of items scrollable or make a list of repeating items. Jul 26, 2022 · The issue is AZList view already has a scroll. ; int _filterId; When any filter button is pressed, just set the value of the _filterId inside a setState() block: Creating a simple ListView in Flutter using the powerful ListView. Basically, there are a lot of items in the same type, same way of displaying; so ListView is fundamentals. Use the standard ListView constructor, passing in a horizontal scrollDirection, which overrides the default vertical direction. builder) to implement a chat. It is used to create the list of children But when we want to create a list recursively without writing code again and again then ListView. builder is a way of constructing the list where Apr 23, 2020 · I need a nested TreeView where going through a list and build nodes based on parent child realationship. Example 1 (Simple) This example displays a card with a list tile inside. Nov 9, 2024 · Chosen as a Flutter Favorite by the Flutter Ecosystem Committee Infinite Scroll Pagination # Unopinionated, extensible and highly customizable package to help you lazily load and display small chunks of items as the user scrolls down the screen – known as infinite scrolling pagination, endless scrolling pagination, auto-pagination, lazy Jun 23, 2018 · I figured it out, the whole problem was in using itemExtent: 25. builder() example Jun 26, 2024 · Flutter includes the ListView widget to make working with lists a breeze. I want to build a list, dynamically, from that json object. Aug 10, 2020 · I want my app to create a ListView. isNotEmpty; } Jan 15, 2023 · Any modern app nowadays has a basic requirement of fetching data from some API. builder() helps you to generate a list view, when you’re data length is unknown. The basics of Flutter ListView. Mar 22, 2021 · We then learned how to create a ListView, including different methods of creating instances of ListView statically and dynamically. The ListView widget provides several constructors that allow you to customize its behaviour according to your needs. Jan 26, 2022 · I have a problem getting images using imagePicker to work in a listview. Mastering Flutter ListViews | Pusher tutorials Flutter ListView. Flutter ListView offers a wide range of customisation options to suit your app The following examples show you a couple of different ways to insert separators between items in a list view in Flutter. Workflow. This tutorial will show you how to use a ListView widget in Flutter to display a list of images with their names and descriptions. builder is particularly useful when working with long lists. I was tried with addAutomaticKeepAlives:true properties which provide by ListView class. Jul 27, 2017 · As I understand, without itemExtent ListView don't know which items immediately show, because using PageStorageKey cashed only position in pixels, and ListView need calculate height of all items scrolled from top. 13. Example 1: Using ListView. Instead of creating this layout by yourself using Rows, Columns, and Containers, you can use the ready-made widget in Flutter called the ListTile widget to help. If you want a dialog with a ListView, you should consider a SimpleDialog. A sample Image is given b Jun 13, 2023 · ListViewを使用したFlutterでのリスト作成方法を掘り下げます。情報を整理し、見やすく表示するための効果的な手段を身につけて、あなたのアプリを次のレベルへと引き上げましょう。 Jan 29, 2022 · An example would be if you have a ListView (scrollable №1) inside a Column inside a SingleChildScrollView Flutter has revolutionized cross-platform app development, offering developers a Jan 19, 2019 · ListView in Flutter. Dari segi Flutter Listview Examples. We can create scrolling behaviour vertically or horizontal. Apr 17, 2024 · ListView is a powerful Flutter widget for displaying scrollable lists of items. url); @override _VideoItemState createState() => VideoItem(); } class _VideoItemState extends State<VideoApp> { VideoPlayerController _controller; @override void initState() { super. builder class. class VideoItem extends StatefulWidget { final string url; VideoItem(this. It is a versatile tool for displaying lists, from simple text to complex interactive content. To work with lists that contain a large number of items, it’s best to use the ListView. So add it to your ListView as shown. io Feb 15, 2020 · You can scroll because the ListView uses ScrollOffset and pre-defined viewport with a set height and width. Implementation of ListView. When tapping on a node it expands and shows its children with indentation. En este tutorial aprenderemos a crear un listview normal. ListView In Flutter. Así que podemos colocar el ListView dentro del body de Working with the Align widget in Flutter; 2 Ways to Get a Random Item from a List in Dart (and Flutter) Flutter AnimatedList – Tutorial and Examples; Flutter SliverList – Tutorial and Example; Flutter & Hive Database: CRUD Example; You can also tour around our Flutter topic page or Dart topic page for the most recent tutorials and examples. Unlike ListView, which renders Learn how to create a simple Jun 27, 2024 · Grouped list package for Flutter. DetailScreen(note: _noteList[index]): We’ve examined a few examples of creating basic grid views. A list in Flutter is created using the ListView widget. Nov 3, 2018 · A ListView in Flutter is a linear list of scrollable items. 1 mysample By default, on TargetPlatformVariant. The built-in ListTile widget is a way Aug 18, 2022 · Most of the time when developing, you might find yourself populating the ListView with some kind of predefined format. Nov 30, 2018 · In this article, I would like to show you a way of achieving this using Flutter’s ListView. class CheckBoxInListView extends StatefulWidget { @override _CheckBoxInListViewState Dec 14, 2018 · I'm new at flutter and I have been searching for proper result of pagination for 2 days. builder by default does not support child This article (which was recently updated to work well with Flutter 3 and newer) walks you through a complete example of creating a ListView with pagination in Flutter. g) If you’re getting data from a web server, we’re not sure about how many (in count) data we receive. Flutter SliverList – Tutorial and Example; Flutter AnimatedList – Tutorial and Examples; Flutter & Hive Database: CRUD Example; Flutter and Firestore Database: CRUD example; Flutter + Firebase Storage: Upload, Retrieve, and Delete files; You can also check out our Flutter topic page or Dart topic page for the latest tutorials and examples. It creates items as they’re scrolled onto the screen, which is ideal for lists with a large number of items. builder with user's data that are fetched from backend API with provider and http package. Provider's Method For Fetching data (Works fine now): Future&lt;List&lt; Jan 20, 2020 · 1st step: Add video player plugin. What is a ListView? Think of a ListView as your app’s personal organizer. How to create a dialog with a list. custom is a more flexible version of ListView. Why Use ListView. Aug 2, 2024 · Well, fear not! Flutter’s ListView is here to save your day, your code, and possibly your sanity. Feb 28, 2023 · Conclusion. The standard ListView constructor works well for small lists. Oct 20, 2017 · Flutter listview with Map instead of List. It efficiently renders a subset of children that are visible in the viewport. Jul 24, 2017 · If you want to have the inner ListView be scrollable independently of the main scroll view, you should use NestedScrollView. 2nd step: create a new widget containing vieo(for each element of your ListView. In this blog, we explored the different types of ListView in Flutter with examples. You can make the ListView scroll in either of the directions: horizontal, vertical; using scrollDirection property. The Divider widget provides a horizontal line that visually separates content. builder() Tutorial. How to create Expandable Listview with ExpansionTile widget and ExpansionPanelList & ExpansionPanel. In all cases found on the Internet, the examples assume that you are using a list with only one property (here in the example, child names). Whenever new messages are added, I'm emitting a new state of elements, and rebuild the whole Lis Aug 18, 2024 · ListViewからは4通りの生成方法を提供しています。 デフォルト生成; ListView. scrollable_positioned_list; dependency: flutter_widgets You set it up exactly like ListView and works the same, except you now have access to a ItemScrollController that does: Dec 15, 2022 · I'm using GroupedListView (which is based on ListView. Jan 30, 2019 · This tutorial takes an in-depth look at working with lists in Flutter. builder, which according to the flutter doc Flutter Lists Codebook, already takes care of the lazy loading part. ListView di Flutter saya lihat sepertinya benar-benar berbeda dengan ListView di Android. miqieu ihfiuk bkagiq bwkd cde zrjxrf tgumho hzfp bofbp ned
{"Title":"What is the best girl name?","Description":"Wheel of girl names","FontSize":7,"LabelsList":["Emma","Olivia","Isabel","Sophie","Charlotte","Mia","Amelia","Harper","Evelyn","Abigail","Emily","Elizabeth","Mila","Ella","Avery","Camilla","Aria","Scarlett","Victoria","Madison","Luna","Grace","Chloe","Penelope","Riley","Zoey","Nora","Lily","Eleanor","Hannah","Lillian","Addison","Aubrey","Ellie","Stella","Natalia","Zoe","Leah","Hazel","Aurora","Savannah","Brooklyn","Bella","Claire","Skylar","Lucy","Paisley","Everly","Anna","Caroline","Nova","Genesis","Emelia","Kennedy","Maya","Willow","Kinsley","Naomi","Sarah","Allison","Gabriella","Madelyn","Cora","Eva","Serenity","Autumn","Hailey","Gianna","Valentina","Eliana","Quinn","Nevaeh","Sadie","Linda","Alexa","Josephine","Emery","Julia","Delilah","Arianna","Vivian","Kaylee","Sophie","Brielle","Madeline","Hadley","Ibby","Sam","Madie","Maria","Amanda","Ayaana","Rachel","Ashley","Alyssa","Keara","Rihanna","Brianna","Kassandra","Laura","Summer","Chelsea","Megan","Jordan"],"Style":{"_id":null,"Type":0,"Colors":["#f44336","#710d06","#9c27b0","#3e1046","#03a9f4","#014462","#009688","#003c36","#8bc34a","#38511b","#ffeb3b","#7e7100","#ff9800","#663d00","#607d8b","#263238","#e91e63","#600927","#673ab7","#291749","#2196f3","#063d69","#00bcd4","#004b55","#4caf50","#1e4620","#cddc39","#575e11","#ffc107","#694f00","#9e9e9e","#3f3f3f","#3f51b5","#192048","#ff5722","#741c00","#795548","#30221d"],"Data":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[6,7],[8,9],[10,11],[12,13],[16,17],[20,21],[22,23],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[36,37],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[2,3],[32,33],[4,5],[6,7]],"Space":null},"ColorLock":null,"LabelRepeat":1,"ThumbnailUrl":"","Confirmed":true,"TextDisplayType":null,"Flagged":false,"DateModified":"2020-02-05T05:14:","CategoryId":3,"Weights":[],"WheelKey":"what-is-the-best-girl-name"}