Flutter gesturedetector example w3schools. Examples of gestures include taps, drags, and scaling.

Flutter gesturedetector example w3schools. This happenes the moment you lift your .
Flutter gesturedetector example w3schools that not worked for me. Sep 26, 2017 · Similar to aziza's suggestion you could have a look at InkWell which basically is a GestureDetector but has the material design splash. Jan 17, 2019 · I am using GestureDetector and didn't find any onXYZ event which tells you the direction of drag. I have been trying to implement a snapping behavior for translating and rotat Aug 23, 2020 · Traced the origin of the issue to the addAllowedPointer(PointerEvent event) method in force_press. onHover will fire on May 12, 2017 · You can provide a GestureTapDownCallback callback as the onTapDown argument of the GestureDetector constructor. Aug 26, 2020 · For example: // Update: This GestureDetector is embedded inside a third party package // that will invoke a series of animation along with the onTap button GestureDetector( onTap: () =&gt; print May 19, 2020 · As you can see we are printing the following areas in the example below. it includes pinch, swipe, touch, plus custom gestures. onTapCancel: When user cancel. I tried a Listener but get no response for onPointerDown, only for onPointerMove, but I need a tap action, not a move action. Sep 12, 2024 · Flutter is an open-source mobile app SDK created by Google. Hot Network Questions Oct 22, 2023 · I don't really understand why you need 2 GestureDetector here. The red container is wrapped with Listener The green container is wrapped with GestureDetector Problem: when tappin Feb 25, 2020 · I am trying to develop a Flutter app that will keep track of the user interaction with the mobile even if the app is running in the background. , of its child widget. The first layer has raw pointer events that describe the location and movement of pointers (for example, touches, mice, and styli) across the screen. I want to do something when the first button is long pressed. Below is the list of gestures and their corresponding You can observe this behaviour in any app with clickable items in a scrollable list, for example chat list in Telegram. width, the size of GestureDetector is also the size of it child (well, imagine you remove GestureDetector, what is that Jul 19, 2019 · Then you can wrap the Container into a GestureDetector, which enables multiple clicks events to a widget. But I have a problem, because I would like to put a border to the current selected Container. For example, if the user tap, drag, . Create a new Flutter app. But the function is not changing anything. pop(), behavior: HitTestBehavior. 6. 6 App调试运行; 1. However, using a real button widget apparently skips the onTap of GestureDetector. 2 Apr 12, 2021 · I have a slider that works with GestureDetector in a stateful widget. Apr 10, 2019 · Iterate over the string to get an array of strings, create separate text span for each and add the gesture recognizer. Mar 29, 2022 · Flutter GestureDetector onTapDown/onTapUp, silde finger off pointer. Update the app accordingly; We will build a simple demo app that handles the tap, double-tap, long press, and scale gestures. To create a shrink effect animation on a Flutter button using onTap, we can use a GestureDetector widget and its onTap property to detect when the user taps the button. You switched accounts on another tab or window. The GestureDetector onPanUpdate event just can only be triggered by dragging in the horizontal direction. First you need to initialise the Focusnode: FocusNode focusNode = FocusNode(); Then you pass it to the textfield: Jun 3, 2019 · What I want to build is a widget that can make its child widget zoomable similar to the zoomable behavior. Make a fresh Flutter application Jan 20, 2019 · Here is my take on why it's not working with an image. I made a gif. Oct 19, 2019 · When drag vertical the GestureDetector in the ListView, can not trigger the GestureDetector onPanUpdate event. Many native widgets of Flutter support interaction through the use of GestureDetector. Update UI Jul 6, 2024 · This document explains how to listen for, and respond to, gestures in Flutter. 0. The gesture system in Flutter has two separate layers. The GestureDetector has also a onTap callback which you can use to execute the same code as when the real RaisedButton has been clicked. transcluent. Jul 6, 2022 · I hope you you can get Idea from this code. dx is bigger than 0 and smaller than MediaQuery Feb 26, 2024 · I forked a Flutter package to implement draggable widgets on a canvas to create layouts from images, text and stickers. 9 pubspec. If you click on add or remove, click gets tracked as May 3, 2022 · To do this, you can wrap your TextField in an Expanded widget, which will expand to fill its parent and then set the expanded parameter of the TextField to true and maxLines to null. follow us. dev/ Mar 8, 2022 · I would like to find a way to drag an object using three fingers in flutter. Gestures are generally defined as any physical action / movement of a user in the intention of activating a specific control of the mobile device. Then I want to do May 20, 2020 · I am using GestureDetector to check when a user swipes horizontally across the screen. Create a new Flutter application and clear the default code in your main. Reload to refresh your session. Flutter has a very good reach among mobile app developers because of its striking features like cross-platform development, hot reload, hot restart, Dec 12, 2018 · I do want to implement in my bottom sheet a gesturedetector, that should change the color of the container when it calls the onTapDown and the onTapCancel function of the GestureDetector. If user slide his finger too much Flutter take this like a cancel tap. List<TextSpan> createTextSpans(){ final string Oct 27, 2023 · Flutterでアプリの操作性を向上させたい方必見!GestureDetectorの基本から応用までをわかりやすく解説します。タップやスワイプ操作を自在に操り、ユーザー体験を向上させましょう。 in flutter application i simple variable as currentValue and this variable value should be between 0. I wrapped the whole row with another GestureDetector with hittestbehaviour. for example check offset. This example uses a GestureDetector that wraps a green Container and a second GestureDetector that wraps a yellow Container. Small snippet of the GestureDetector taking priority over a TextFormField: Oct 22, 2021 · check this you might not able to see the container moving or scaling but when you put something bigger than screen sizes like an image or something InteractiveViewer will kick into work below example could help but the exact problem you want to fix might help with basics. May 20, 2021 · I have a variable number of Containers created by a button. The second GestureDetector is a child of the green Container. Maybe try something like this: return GestureDetector( onTap: => Navigator. Ok on my side it was quite stupid but since it may happens to many of us I will explain: My build context (simplified for the example) tree was this way: Apr 6, 2019 · Personally I use two others methods from GestureDetector: onTapDown: When user is pressing your widget. May 16, 2019 · GestureDetector( onTap: { todo1(); }, child: GestureDetector( onTap: { todo2(); }, child: Text("Nested Gesture"))) How do I change this to call both todo1() and todo2() onTap? edit: the child is a re-usable custom widget that has its own implementation but is now being used by the parent which also has an implementation of its own in addition Nov 12, 2018 · In this answer, I'll solve the simpler example you have given. This app needs to be updated. Let’s try to combine these events in a widget! Jun 20, 2023 · In this example, our square changes its color from blue to red when tapped, using the onTap callback in the GestureDetector to handle the tap event. Jun 16, 2020 · I tested your example. 7 打包部署; 1. 66ms min=5. Provide a box decoration to the container wrapped by the GestureDetector and in the box decoration provide a color: Colors. according the flutter api docs: Future<void> animateToPage ( int page, {@required Duration duration, @required Curve curve} ) this will Animate the controlled PageView from the current page to the given page. My current solution is use a Stack that have a GestureDetector as one of its children to detect the taps but with this solution my alignment is controlled by the Stack, I just want the alignment to be controlled by the parent Jul 18, 2019 · I tried the snippet below with GestureDetector but it does not work. GestureDetector class is very broad. So the solution is that set cursor directly to flt-glass-pane. When the callback is called it adds a red border to the corresponding Container. Using GestureDetector. double _scaleFactor = 1. Flutter Tutorial - This Flutter tutorial has everything you need to know about the Flutter framework, from its installation to writing advanced applications. FlutterAgency. translucent, <=== SEE HERE child: child ); In your code the 2 GestureDetector are listening to the same Gesture and only one will trigger the action. Flutter GestureDetector onTapDown/onTapUp, silde finger off pointer. That's why we also don't need GestureDetector on text anymore. DartPad will not be responsive or otherwise behave oddly in your device/simulators (i. onSecondaryLongPress Called when a long press gesture with a secondary button has been recognized. The following are key aspects in relation to changing state of the widget based on the users’ gesture. new GestureDetector( onHorizontalDragEnd: (DragEndDetails details) { May 23, 2020 · TapUpDetailsのメンバ変数. Jan 5, 2021 · In the example below we have a tappable red container inside a green container. Any ideas? Mar 31, 2019 · In Stateful widget with these configuration. Jan 7, 2022 · I have problems to get real local position on gesture detector widget using pan update. Oct 24, 2018 · Another GestureDetector in the BuildContext tree. You are creating the following Widget hierarchy: - GestureDetector // green - Container - Center - GestureDetector // red - Container Therefore the red GestureDetector is a child Widget of the green GestureDetector. You can do that by just handing them over in your instantiation as constructor variables. you can detect every type of interaction the user has with the screen or widget using it. Here’s an example code snippet that demonstrates this: late AnimationController _controller; @override void initState() {super. pop(context); }, child: The animation looks fine with this but the problem is that it is poping at almost any gesture. A Dive into GestureDetector Callbacks The GestureDetector widget provides several callbacks to manage different types of gestures. I've also put the code below inside a StatefulWidget so that I am able to call setState((){}). May 26, 2018 · In my code, I use a gesture detector to pull up my menu as the user is dragging. of(context). Pass callback for the gesture you wish to detect. May 29, 2023 · For me, if you want to create a beautiful UI relates to "choose value between x & y", you should use slider instead of GestureDetector - much easier. GestureDetector ontap does not work but ondouble tap works. Aug 2, 2021 · Make the child GestureDetector have priority over the SingleChildScrollView when dragging on top of the GestureDetector -- but still have functionality of scrolling SingleChildScrollView outside GestureDetector. We can also incorporate interactive feature into the existing widget by composing it with the GestureDetector widget Oct 2, 2017 · Is there a better way to check Left/Right Drag in #flutter. In this example, we will learn how to use GestureDetector in Flutter around the Container border flutter widget. I am getting a JSON response from an API endpoint in order to build the comments on posts, but I need to be able to take part of a string and wrap it in a GestureDetector, in order to handle "@ mentions". 3 Flutter环境安装和配置; 1. This is my solution using GestureDetector. It provides a way to make your Flutter app interactive and responsive to user input. onTapUp: When user leave the widget. 2 富文本组件-RichText; 2. dart, which begins. pre, add id to body and set cursor of that doesn't work. 0, decoration: new Nov 26, 2020 · For anyone looking to do this on mobile, note that a touch interface doesn't actually handle the concept of "hover" unlike your desktop browser, so solutions proposing MouseRegion. The TabDown actually is recognized. swipe to right should be add and swipe to left should be minus, considering latest value of variable, that means, for example: Aug 19, 2024 · I will try to mention the functionality difference they have. Flutter is a UI toolkit used to develop applications for both mobile and desktop using a single programming language and code base. Flutter uses Dart language for creating mobile apps, that follow object-oriented concepts. 0; And use setState only on update, using the scaleFactor on textScaleFactor property of RichText. Here is a simple code example: Jul 6, 2020 · In this post, we will learn about how to use GestureDetector with Stateful widgets in order to record changes to state. Dec 24, 2020 · Your GestureDetector syntax is correct but you passed wrong argument to animateToPage. Know how you can use GestureDetector widget to detect the swipe in flutter. Flutter - Introduction to Gestures - Gestures are primarily a way for a user to interact with a mobile (or any touch based device) application. When the gradient container is large the Oct 18, 2021 · Wrap desired widget with the GestureDetector widget. The GestureTapDownCallback takes a TapDownDetails argument that includes the global position of the tap. Capture user’s gesture using a widget called as GestureDetector. full code example for GestureDetector This example uses a GestureDetector that wraps a green Container and a second GestureDetector that wraps a yellow Container. The swipe should only be registered when the user removes their finger from the screen to end the swipe, hence the use of onHorizontalDragEnd. MouseRegion. To demonstrate how the tap, double-tap, long press, and scale gestures work, we will create a straightforward demo app. 0. Since the SomePainter recalculate I am building an application with flutter, but I am having a bit of trouble with one of my widgets. Examples of gestures include taps, drags, and scaling. This means it listens to behind elements and still recognizes events. onTap: Is when tap down and tap up follows. I need implement time consider for GestureDetector, i need 200ms for detect long press event. I am new to flutter but I understand how to use GestureDetector. Thanks for reading !!! Do let us know the suggestion/Feedback to serve you better. g. Apr 2, 2019 · I have a menu that is displayed when a button is pressed, I want to be able to close the menu when there is a Tap outside the menu, just like a regular PopupMenuButton. e. yaml 配置文件详解; 第二章:文本组件. initState(); Feb 3, 2024 · 今回はジェスチャー操作を実装できるGestureDetectorを使ってみたので、学んだことをまとめようと思います。 GestureDetectorとは GestureDetectorはタップ、長押し、スワイプなどの様々なジェスチャーを検出し、それに応じたアクションを実行することができます。 Nov 27, 2019 · I have found a workaround for this. Jun 3, 2018 · Flutter GestureDetector's onTapUp is not always called. 3 Flutter: Disabling Multi-Touch/Drag with Gesture Detector. @override void addAllowedPointer(PointerEvent event) { // If the device has a maximum pressure of less than or equal to 1, it // doesn't have touch pressure sensing capabilities. Sep 19, 2020 · It supports various types of gestures such as tap, secondary tap, long press, vertical/horizontal drag, pan, and scale. Because flt-glass-pane is replacing the cursor. The Problem is, that the PageView and the GestureDetector both recognize the TabDown event, and it's not clear yet if it is an horizontal swipe event or a TapEvent, so the processing gets delayed until the PageView is sure it isn't a swipe event. com is our portal Platform dedicated to Flutter Technology and Flutter Developers. new Center( child new Container( height: 150. I tried to adjust sensitivity from zero. But when I pull the menu up, the hitbox of the GestureDetector doesn't change, so when I want to put it back down it Aug 4, 2023 · Flutter, Google’s open-source UI toolkit, provides developers with a myriad of powerful widgets for creating rich and interactive user interfaces. Mar 2, 2021 · I tried using a GestureDetector like this: body: GestureDetector( onVerticalDragDown: (details) { Navigator. The GestureDetector takes a child and a callback. 5 设置应用程序名称和图标; 1. Flutter's GestureDetector constructor has a lot of parameters. Sep 11, 2019 · I'm trying to record a video when a button is pressed long (in flutter) This is my code: GestureDetector( onLongPressStart: {print("START VIDEO");} I have a GestureDetector (that has some specific business logic) that listens to single taps and has a child as parameter. 実際に利用しそうなメンバ変数のみ紹介しておきます。globalPositionは公式サイトの説明ではスクリーン座標と書いてあり、スマホ本体のスクリーンの絶対座標かと思ってしまいますが、そうではなくてアプリ内画面の絶対座標です。 The problem is that the GestureDetector -> onTap method gets triggered on app refresh for all cels. If you have any solution then please help me import 'dart:async'; import 'package:flutter/mat Nov 24, 2020 · I thought of a workaround for no scrolling over HTMLView by displaying a PointerInterceptor over the view when user scrolls, but, first, the listener doesn't work when the cursor is over the HTMLView which defies the purpose of this for me and second, it doesn't notify when the even stops/ends that even if the user had scrolled over any other component, the PointerInterceptor doesn't hide Jul 16, 2019 · Thus I thought of using the flutter widget GestureDetector, wrapping the map inside it so that I would be able to change variables based on the gestures detected by GestureDetector to cause changes indirectly in the map. flutter. Gestures are as simple as tapping the screen o Aug 12, 2019 · Ok guys, I think I found a solution myself. I have the following situation: I have two buttons. The portal is full of cool resources from Flutter like Flutter Widget Guide, Flutter Projects, Code libs and etc. I know Flutter has a GestureArenaManager, but how to let the GestureDetector win in the arena? Nov 12, 2019 · I tried using GestureRecognizer in flutter webview to zoom out on Double pinch. I hope that there exist a simpler solution but it works for my use. Most of them are Oct 16, 2023 · A GestureDetector is a very useful Flutter widget that allows you to recognize and respond to various touch gestures, such as taps, swipe, double taps, drags, and more. 1 文本组件-Text; 2. What I would like to have is that it is only popping if the user is actually swiping down. Nov 15, 2017 · I'd like to use a GestureDetector for it's onTapDown callback but also have a nice InkWell splash effect. . Feb 27, 2022 · I believe you should not be using a GestureDetector here but a Listener widget instead. Here it's the Feb 23, 2021 · Flutter Gesturedetector return value of ontapped widget Hot Network Questions If you are working remotely as a contractor, can you be allowed to applying as a business vistor to Australia? Jan 18, 2019 · I/flutter (21524): The ownership chain for the parent of the offending Positioned was: I/flutter (21524): Listener ← _GestureSemantics ← RawGestureDetector ← GestureDetector ← Stack ← Padding ← Column ← I/flutter (21524): Center ← DecoratedBox ← Container ← ⋯ GestureDetector Widget. You also asked about how to pass variables to another class. 1. In this article, we are going to implement and deep dive into GestureDetector widget in Flutter. Oct 19, 2021 · You signed in with another tab or window. Example. As a listener can give you the global position of where the user presser, or a relative position to where the widget pressed starts. If you want to get width of screen, use MediaQuery. Jun 13, 2022 · The GestureDetector widget in flutter is used to detect physical interaction with the application on the UI. or any other May 14, 2021 · Here is my code, the onVerticalDragUpdate called multiple times on swipe down/up. 19. You signed out in another tab or window. 4 创建Flutter项目及默认代码介绍; 1. Both GestureDetectors define an onTap callback. In the example below, the _changeCell method gets triggered instantly for all cels and onTap doesn't work. The flutter tests run in a FakeAsync zone and when you need to run real async code like loading an asset through an assetBundle the asset is not getting loaded and the image widget's size stays as zero and because of this the hit testing fails. 0 and 1, by gesture and swipe to right or left i want to change this value of currentValue. In this example, we use Container as a child, and we use an onTap callback. +1 850 780 1313 +91 777 796 5000. Among these widgets, GestureDetector and InkWell… Sep 20, 2021 · 在前面的文章中我们介绍了Listener,而GestureDetector是对Listener的封装,提供非常多的手势,包括单击、双击、拖动、混合手势等。 Jan 5, 2020 · Flutter: How to put GestureDetector for items displayed from list 0 is it possible to navigate/move to a different screen by using GestureDetector and class name? Feb 22, 2022 · Problem: I built minesweeper and 350ms is too much to trigger the longPress event, I need more speed. Have a look at the onTap method in the code example. The same widget catches the gesture and returns the appropriate action or response. Gestures I want to cover are Pinch To Zoom Double Tap to Zoom Tap to get the local Posit Aug 7, 2022 · when you calculate the new offset check for dy and dx to be inside view. The following happens as part of GestureDetector widget: I am creating a drawing canvas with flutter for which I want to use both scale (for zooming, panning and rotating) and Pan (for drawing with fingers) gestures but flutter doesn't allow that since Scale is a superset of Pan. GestureDetector( onVerticalDragUpdate: (de May 8, 2019 · Hey, I don't know if this is the expected behavior but a GestureDetector with a Container in it's child, the onTap callback is not executed when the Container doesn't have a color. In this code you can drag Container anywhere in the Screen and set it. size. This is my code: Nov 14, 2017 · I'm using the GestureDetector to get this events using: onHorizontalDragStart: _onDragStart, onHorizontalDragUpdate: _onDragUpdate, But how can I transform the global position into local? Feb 19, 2021 · If I have a GestureDetector that have an internal GestureDetector how can I setup it so that both detectors receive the click event? You can see the running code here: https://dartpad. This happenes the moment you lift your The problem you have is a conflict between: zooming and dragging the image inside the custom ClipPath; dragging the images between two custom ClipPath; The solution I propose is to use drag handles to swap the images May 3, 2022 · In my example, I don't want onTapDown to be printed when the button is tapped. Learn to use GestureDetector Widget In Flutter. dart file. delta. 34ms max=12373. If you copy/paste this code into dart pad you can see what I mean. I put the handler inside onPanEnd, as onPanUpdate gets called multiple times when the swiping is in progress. Dec 4, 2021 · We use GestureDetector's onTap every day, but when does onTapCancel gets called? I read the implemention code, and noticed that onTapCancel comment: /// The pointer that previously triggered [onT Flutter's GestureDetector has various methods for "secondary" touch gestures, but I can't figure out from the documentation what these are for. dart’ package. 2. 8 Flutter Application Plugin Package Module区别; 1. 45ms count=16 I/flutter (13717): Gesture arena 9 Jan 5, 2022 · You can use a FocusNode for this. 0, width: 150. I have done it but somtime it works sometime it doesn't. For example: onSecondaryTap: A tap with a secondary button has occurred. H Oct 7, 2022 · I/flutter (13717): Gesture arena 8 Accepting: VerticalDragGestureRecognizer#07525(start behavior: start) I/flutter (13717): Gesture arena 8 Self-declared winner: VerticalDragGestureRecognizer#07525(start behavior: start) D/EGL_emulation(13717): app_time_stats: avg=781. Flutter GestureDetector onTapRight Dec 29, 2020 · So it seems that rather than having a GestureDetector as a child, the recommended solution is to wrap the InteractiveViewer with a GestureDetector, use a custom TransformationController, and get the position relative to the viewer viewport from this controller. For example, the I just solved this myself using Flutter 0. Oct 12, 2020 · I am new in the flutter and my problem is when the GestureDetector child is a flutter map a OnTapUp method not response but when the child is a container every things work fine. dx + details. The outcome can just be dragging a square around the sc Jun 9, 2020 · GestureDetector( onTapDown: _onTapDown, onTapUp: _onTapUp, child: Transform. onPointerHover that look ok fiddling in e. transparent. What is a "secondary button"? To use the GestureDetector flutter example widget: Give a callback for the gesture you want to recognize. The problem I had was that the Stack widget doesn't pass the hit test to all children but only the first one that is hit. Below are the examples of how to use Flutter's GestureDetector along with explanations for each supported gesture type. These Containers are wrapped by GestureDetector to make them draggable. This tutorial would be the ri Feb 20, 2023 · Flutter Button Shrink Effect Animation. To use the Flutter GestureDetector, you must first import the ‘materia. 0; double _baseScaleFactor = 1. The GestureDetector object takes in a behavior property from this enum to determine how to defer actions. In a specific location, I want this child widget to look like a button. onHover, or Listener. This is my example solution: import 'package:flutter GestureDetector is an invisible widget having the ability to capture user interactions such as tapping, dragging, etc. OnTap Function doesn't work after changing Button to GestureDetector. 3 文本输入 Feb 21, 2024 · From Flutter beta version 1. But it is not working. May 1, 2021 · Flutter- GestureDetector detect the direction of Horizontal and Vertical Drag. onHover|Enter|Exit, Inkwell. scale( scale: _scale, child: _animatedButtonUI, ), ), So all I need Iwant to high light the color when on click like the FlatButton as it have an attribute highlightColor 1. Oct 5, 2020 · I have a question about the GestureDetector widget in Flutter. And also check this Gesture Detector Overview for Gesture Detector detail. If a widget is supposed to experience a gesture, it is kept inside the GestureDetector widget. The problem is that every time if I move the slider the whole stateful widget is regenerated. Wrap the GestureDetector widget around the desired widget. 0-4. ybhfvd wxaq qvoshd brtooi xgjl sdqwp adb hrcs phece gvmre
{"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"}