Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
Material
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dmitriy Stepanets
Material
Commits
b3f16f78
Commit
b3f16f78
authored
Sep 12, 2016
by
Daniel Dahan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
development: removed @IBDesignable from Material issue-497
parent
d3ea4e7b
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
0 additions
and
18 deletions
+0
-18
Sources/iOS/BottomNavigationController.swift
+0
-1
Sources/iOS/BottomTabBar.swift
+0
-1
Sources/iOS/Button.swift
+0
-1
Sources/iOS/CollectionReusableView.swift
+0
-1
Sources/iOS/CollectionView.swift
+0
-1
Sources/iOS/CollectionViewCell.swift
+0
-1
Sources/iOS/Label.swift
+0
-1
Sources/iOS/MenuController.swift
+0
-1
Sources/iOS/NavigationBar.swift
+0
-1
Sources/iOS/NavigationController.swift
+0
-1
Sources/iOS/NavigationDrawerController.swift
+0
-1
Sources/iOS/RootController.swift
+0
-1
Sources/iOS/StatusBarController.swift
+0
-1
Sources/iOS/Switch.swift
+0
-1
Sources/iOS/TableViewCell.swift
+0
-1
Sources/iOS/TextField.swift
+0
-1
Sources/iOS/TextView.swift
+0
-1
Sources/iOS/View.swift
+0
-1
No files found.
Sources/iOS/BottomNavigationController.swift
View file @
b3f16f78
...
...
@@ -59,7 +59,6 @@ public enum BottomNavigationTransitionAnimation: Int {
case
fade
}
@IBDesignable
open
class
BottomNavigationController
:
UITabBarController
,
UITabBarControllerDelegate
{
/// The transition animation to use when selecting a new tab.
open
var
transitionAnimation
=
BottomNavigationTransitionAnimation
.
fade
...
...
Sources/iOS/BottomTabBar.swift
View file @
b3f16f78
...
...
@@ -37,7 +37,6 @@ extension UITabBarItem {
}
}
@IBDesignable
open
class
BottomTabBar
:
UITabBar
{
/// Automatically aligns the BottomNavigationBar to the superview.
open
var
isAlignedToParentAutomatically
=
true
...
...
Sources/iOS/Button.swift
View file @
b3f16f78
...
...
@@ -30,7 +30,6 @@
import
UIKit
@IBDesignable
@objc(Button)
open
class
Button
:
UIButton
{
/**
...
...
Sources/iOS/CollectionReusableView.swift
View file @
b3f16f78
...
...
@@ -30,7 +30,6 @@
import
UIKit
@IBDesignable
@objc(MaterialCollectionReusableView)
open
class
MaterialCollectionReusableView
:
UICollectionReusableView
{
/**
...
...
Sources/iOS/CollectionView.swift
View file @
b3f16f78
...
...
@@ -30,7 +30,6 @@
import
UIKit
@IBDesignable
open
class
CollectionView
:
UICollectionView
{
/// A preset wrapper around contentInset.
open
var
contentEdgeInsetsPreset
:
EdgeInsets
{
...
...
Sources/iOS/CollectionViewCell.swift
View file @
b3f16f78
...
...
@@ -30,7 +30,6 @@
import
UIKit
@IBDesignable
@objc(CollectionViewCell)
open
class
CollectionViewCell
:
UICollectionViewCell
{
/// A reference to the divider.
...
...
Sources/iOS/Label.swift
View file @
b3f16f78
...
...
@@ -30,7 +30,6 @@
import
UIKit
@IBDesignable
open
class
Label
:
UILabel
{
/**
:name: layerClass
...
...
Sources/iOS/MenuController.swift
View file @
b3f16f78
...
...
@@ -48,7 +48,6 @@ extension UIViewController {
}
}
@IBDesignable
open
class
MenuController
:
RootController
{
/// Reference to the MenuView.
open
private(set)
lazy
var
menu
:
Menu
=
Menu
()
...
...
Sources/iOS/NavigationBar.swift
View file @
b3f16f78
...
...
@@ -38,7 +38,6 @@ public enum NavigationBarStyle: Int {
case
large
}
@IBDesignable
open
class
NavigationBar
:
UINavigationBar
{
/// A reference to the divider.
open
internal(set)
var
divider
:
Divider
!
...
...
Sources/iOS/NavigationController.swift
View file @
b3f16f78
...
...
@@ -42,7 +42,6 @@ extension UINavigationController {
}
}
@IBDesignable
open
class
NavigationController
:
UINavigationController
{
/**
An initializer that initializes the object with a NSCoder object.
...
...
Sources/iOS/NavigationDrawerController.swift
View file @
b3f16f78
...
...
@@ -120,7 +120,6 @@ public protocol NavigationDrawerControllerDelegate {
optional
func
navigationDrawerStatusBarHiddenState
(
navigationDrawerController
:
NavigationDrawerController
,
hidden
:
Bool
)
}
@IBDesignable
@objc(NavigationDrawerController)
open
class
NavigationDrawerController
:
RootController
,
UIGestureRecognizerDelegate
{
/**
...
...
Sources/iOS/RootController.swift
View file @
b3f16f78
...
...
@@ -30,7 +30,6 @@
import
UIKit
@IBDesignable
open
class
RootController
:
UIViewController
{
/// Device status bar style.
open
var
statusBarStyle
:
UIStatusBarStyle
{
...
...
Sources/iOS/StatusBarController.swift
View file @
b3f16f78
...
...
@@ -48,7 +48,6 @@ extension UIViewController {
}
}
@IBDesignable
open
class
StatusBarController
:
RootController
{
/// A reference to the statusBarView.
open
private(set)
lazy
var
statusBarView
=
View
()
...
...
Sources/iOS/Switch.swift
View file @
b3f16f78
...
...
@@ -59,7 +59,6 @@ public protocol SwitchControlDelegate {
}
@objc(SwitchControl)
@IBDesignable
open
class
SwitchControl
:
UIControl
{
/// An internal reference to the switchState public property.
private
var
internalSwitchControlState
:
SwitchControlState
=
.
off
...
...
Sources/iOS/TableViewCell.swift
View file @
b3f16f78
...
...
@@ -30,7 +30,6 @@
import
UIKit
@IBDesignable
open
class
TableViewCell
:
UITableViewCell
{
/**
A CAShapeLayer used to manage elements that would be affected by
...
...
Sources/iOS/TextField.swift
View file @
b3f16f78
...
...
@@ -32,7 +32,6 @@ import UIKit
public
protocol
TextFieldDelegate
:
UITextFieldDelegate
{}
@IBDesignable
open
class
TextField
:
UITextField
{
/// Default size when using AutoLayout.
open
override
var
intrinsicContentSize
:
CGSize
{
...
...
Sources/iOS/TextView.swift
View file @
b3f16f78
...
...
@@ -33,7 +33,6 @@ import UIKit
@objc(TextViewDelegate)
public
protocol
TextViewDelegate
:
UITextViewDelegate
{}
@IBDesignable
@objc(TextView)
public
class
TextView
:
UITextView
{
/// A property that accesses the backing layer's backgroundColor.
...
...
Sources/iOS/View.swift
View file @
b3f16f78
...
...
@@ -30,7 +30,6 @@
import
UIKit
@IBDesignable
@objc(View)
open
class
View
:
UIView
{
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment