Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Custom support kanban board #4

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion example/ios/Flutter/AppFrameworkInfo.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
<key>CFBundleVersion</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>9.0</string>
<string>11.0</string>
</dict>
</plist>
13 changes: 8 additions & 5 deletions example/ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objectVersion = 54;
objects = {

/* Begin PBXBuildFile section */
Expand Down Expand Up @@ -135,7 +135,7 @@
97C146E61CF9000F007C117D /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 1020;
LastUpgradeCheck = 1300;
ORGANIZATIONNAME = "";
TargetAttributes = {
97C146ED1CF9000F007C117D = {
Expand Down Expand Up @@ -179,10 +179,12 @@
/* Begin PBXShellScriptBuildPhase section */
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
);
name = "Thin Binary";
outputPaths = (
Expand All @@ -193,6 +195,7 @@
};
9740EEB61CF901F6004384FC /* Run Script */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
Expand Down Expand Up @@ -280,7 +283,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SUPPORTED_PLATFORMS = iphoneos;
Expand Down Expand Up @@ -362,7 +365,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -411,7 +414,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SUPPORTED_PLATFORMS = iphoneos;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1020"
LastUpgradeVersion = "1300"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
4 changes: 4 additions & 0 deletions example/ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,9 @@
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
<key>CADisableMinimumFrameDurationOnPhone</key>
<true/>
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>
</dict>
</plist>
6 changes: 2 additions & 4 deletions example/lib/basic_example.dart
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import 'package:drag_and_drop_lists/drag_and_drop_item.dart';
import 'package:drag_and_drop_lists/drag_and_drop_lists.dart';
import 'package:example/navigation_drawer.dart';
import 'package:example/navigation_drawer.dart' as navi;
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';

class BasicExample extends StatefulWidget {
BasicExample({Key? key}) : super(key: key);
Expand Down Expand Up @@ -57,7 +55,7 @@ class _BasicExample extends State<BasicExample> {
appBar: AppBar(
title: Text('Basic'),
),
drawer: NavigationDrawer(),
drawer: navi.NavigationDrawer(),
body: DragAndDropLists(
children: _contents,
onItemReorder: _onItemReorder,
Expand Down
6 changes: 2 additions & 4 deletions example/lib/drag_handle_example.dart
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import 'package:drag_and_drop_lists/drag_and_drop_lists.dart';
import 'package:example/navigation_drawer.dart';
import 'package:example/navigation_drawer.dart' as navi;
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
import 'package:flutter/widgets.dart';

class DragHandleExample extends StatefulWidget {
DragHandleExample({Key? key}) : super(key: key);
Expand Down Expand Up @@ -86,7 +84,7 @@ class _DragHandleExample extends State<DragHandleExample> {
appBar: AppBar(
title: Text('Drag Handle'),
),
drawer: NavigationDrawer(),
drawer: navi.NavigationDrawer(),
body: DragAndDropLists(
children: _contents,
onItemReorder: _onItemReorder,
Expand Down
6 changes: 2 additions & 4 deletions example/lib/drag_into_list_example.dart
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import 'package:drag_and_drop_lists/drag_and_drop_item.dart';
import 'package:drag_and_drop_lists/drag_and_drop_list_interface.dart';
import 'package:drag_and_drop_lists/drag_and_drop_lists.dart';
import 'package:example/navigation_drawer.dart';
import 'package:example/navigation_drawer.dart' as navi;
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';

class DragIntoListExample extends StatefulWidget {
DragIntoListExample({Key? key}) : super(key: key);
Expand All @@ -21,7 +19,7 @@ class _DragIntoListExample extends State<DragIntoListExample> {
appBar: AppBar(
title: Text('Drag Into List'),
),
drawer: NavigationDrawer(),
drawer: navi.NavigationDrawer(),
body: Column(
children: <Widget>[
Flexible(
Expand Down
7 changes: 2 additions & 5 deletions example/lib/expansion_tile_example.dart
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import 'package:drag_and_drop_lists/drag_and_drop_list_expansion.dart';
import 'package:drag_and_drop_lists/drag_and_drop_lists.dart';
import 'package:example/navigation_drawer.dart';
import 'package:example/navigation_drawer.dart' as navi;
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
import 'package:flutter/widgets.dart';

class ExpansionTileExample extends StatefulWidget {
ExpansionTileExample({Key? key}) : super(key: key);
Expand Down Expand Up @@ -39,7 +36,7 @@ class _ListTileExample extends State<ExpansionTileExample> {
appBar: AppBar(
title: Text('Expansion Tiles'),
),
drawer: NavigationDrawer(),
drawer: navi.NavigationDrawer(),
body: DragAndDropLists(
children: List.generate(_lists.length, (index) => _buildList(index)),
onItemReorder: _onItemReorder,
Expand Down
6 changes: 2 additions & 4 deletions example/lib/fixed_example.dart
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import 'package:drag_and_drop_lists/drag_and_drop_item.dart';
import 'package:drag_and_drop_lists/drag_and_drop_lists.dart';
import 'package:example/navigation_drawer.dart';
import 'package:example/navigation_drawer.dart' as navi;
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';

class FixedExample extends StatefulWidget {
FixedExample({Key? key}) : super(key: key);
Expand Down Expand Up @@ -61,7 +59,7 @@ class _FixedExample extends State<FixedExample> {
appBar: AppBar(
title: Text('Fixed Items'),
),
drawer: NavigationDrawer(),
drawer: navi.NavigationDrawer(),
body: DragAndDropLists(
children: _contents,
onItemReorder: _onItemReorder,
Expand Down
10 changes: 4 additions & 6 deletions example/lib/horizontal_example.dart
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import 'package:drag_and_drop_lists/drag_and_drop_item.dart';
import 'package:drag_and_drop_lists/drag_and_drop_lists.dart';
import 'package:example/navigation_drawer.dart';
import 'package:example/navigation_drawer.dart' as navi;
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';

class HorizontalExample extends StatefulWidget {
HorizontalExample({Key? key}) : super(key: key);
Expand Down Expand Up @@ -38,7 +36,7 @@ class _HorizontalExample extends State<HorizontalExample> {
appBar: AppBar(
title: Text('Horizontal'),
),
drawer: NavigationDrawer(),
drawer: navi.NavigationDrawer(),
body: DragAndDropLists(
children: List.generate(_lists.length, (index) => _buildList(index)),
onItemReorder: _onItemReorder,
Expand Down Expand Up @@ -77,7 +75,7 @@ class _HorizontalExample extends State<HorizontalExample> {
padding: EdgeInsets.all(10),
child: Text(
'Header ${innerList.name}',
style: Theme.of(context).primaryTextTheme.headline6,
style: Theme.of(context).primaryTextTheme.titleLarge,
),
),
),
Expand All @@ -95,7 +93,7 @@ class _HorizontalExample extends State<HorizontalExample> {
padding: EdgeInsets.all(10),
child: Text(
'Footer ${innerList.name}',
style: Theme.of(context).primaryTextTheme.headline6,
style: Theme.of(context).primaryTextTheme.titleLarge,
),
),
),
Expand Down
8 changes: 3 additions & 5 deletions example/lib/list_tile_example.dart
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import 'package:drag_and_drop_lists/drag_and_drop_lists.dart';
import 'package:example/navigation_drawer.dart';
import 'package:example/navigation_drawer.dart' as navi;
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
import 'package:flutter/widgets.dart';

class ListTileExample extends StatefulWidget {
ListTileExample({Key? key}) : super(key: key);
Expand Down Expand Up @@ -78,7 +76,7 @@ class _ListTileExample extends State<ListTileExample> {
appBar: AppBar(
title: Text('List Tiles'),
),
drawer: NavigationDrawer(),
drawer: navi.NavigationDrawer(),
body: DragAndDropLists(
children: _contents,
onItemReorder: _onItemReorder,
Expand Down Expand Up @@ -108,7 +106,7 @@ class _ListTileExample extends State<ListTileExample> {
Text(
'Empty List',
style: TextStyle(
color: Theme.of(context).textTheme.caption!.color,
color: Theme.of(context).textTheme.bodySmall!.color,
fontStyle: FontStyle.italic),
),
Expanded(
Expand Down
1 change: 0 additions & 1 deletion example/lib/navigation_drawer.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';

class NavigationDrawer extends StatelessWidget {
@override
Expand Down
8 changes: 3 additions & 5 deletions example/lib/sliver_example.dart
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import 'package:drag_and_drop_lists/drag_and_drop_item.dart';
import 'package:drag_and_drop_lists/drag_and_drop_lists.dart';
import 'package:example/navigation_drawer.dart';
import 'package:example/navigation_drawer.dart' as navi;
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';

class SliverExample extends StatefulWidget {
SliverExample({Key? key}) : super(key: key);
Expand Down Expand Up @@ -63,7 +61,7 @@ class _SliverExample extends State<SliverExample> {
@override
Widget build(BuildContext context) {
return Scaffold(
drawer: NavigationDrawer(),
drawer: navi.NavigationDrawer(),
body: CustomScrollView(
controller: _scrollController,
slivers: <Widget>[
Expand All @@ -75,7 +73,7 @@ class _SliverExample extends State<SliverExample> {
alignment: Alignment.bottomCenter,
child: Text(
'Slivers',
style: Theme.of(context).primaryTextTheme.headline1,
style: Theme.of(context).primaryTextTheme.displayLarge,
),
),
),
Expand Down
Loading