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
37ee9527
Commit
37ee9527
authored
Oct 10, 2017
by
Daniel Dahan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated for Motion submodule access
parent
160a1baa
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
18 additions
and
2 deletions
+18
-2
Material.podspec
+1
-1
Material.xcodeproj/project.pbxproj
+0
-0
Sources/Frameworks/Motion
+1
-1
Sources/iOS/Button.swift
+1
-0
Sources/iOS/ChipBar.swift
+1
-0
Sources/iOS/CollectionReusableView.swift
+1
-0
Sources/iOS/CollectionViewCell.swift
+1
-0
Sources/iOS/Divider.swift
+1
-0
Sources/iOS/Grid.swift
+1
-0
Sources/iOS/Layout.swift
+1
-0
Sources/iOS/Material+CALayer.swift
+1
-0
Sources/iOS/Material+MotionAnimation.swift
+1
-0
Sources/iOS/NavigationItem.swift
+1
-0
Sources/iOS/PulseAnimation.swift
+1
-0
Sources/iOS/PulseView.swift
+1
-0
Sources/iOS/SnackbarController.swift
+1
-0
Sources/iOS/TableViewCell.swift
+1
-0
Sources/iOS/TabsController.swift
+1
-0
Sources/iOS/TransitionController.swift
+1
-0
No files found.
Material.podspec
View file @
37ee9527
...
...
@@ -20,6 +20,6 @@ Pod::Spec.new do |s|
'com.cosmicmind.material.fonts'
=>
[
'Sources/**/*.ttf'
]
}
s
.
dependency
'
Motion
'
,
'~> 1.0.0
'
s
.
dependency
'
Motion
'
,
:git
=>
'git@github.com:CosmicMind/Motion.git'
,
:branch
=>
'development
'
end
end
Material.xcodeproj/project.pbxproj
View file @
37ee9527
This diff is collapsed.
Click to expand it.
Motion
@
a5cf3342
Subproject commit
13d10d3d7313e3361c7c1c41c83773e48bebbc86
Subproject commit
a5cf33420ff7bf159aba7983cdf1619aaeff3329
Sources/iOS/Button.swift
View file @
37ee9527
...
...
@@ -29,6 +29,7 @@
*/
import
UIKit
import
Motion
open
class
Button
:
UIButton
,
Pulseable
,
PulseableLayer
{
/**
...
...
Sources/iOS/ChipBar.swift
View file @
37ee9527
...
...
@@ -29,6 +29,7 @@
*/
import
UIKit
import
Motion
@objc(ChipItemStyle)
public
enum
ChipItemStyle
:
Int
{
...
...
Sources/iOS/CollectionReusableView.swift
View file @
37ee9527
...
...
@@ -29,6 +29,7 @@
*/
import
UIKit
import
Motion
@objc(CollectionReusableView)
open
class
CollectionReusableView
:
UICollectionReusableView
,
Pulseable
,
PulseableLayer
{
...
...
Sources/iOS/CollectionViewCell.swift
View file @
37ee9527
...
...
@@ -29,6 +29,7 @@
*/
import
UIKit
import
Motion
@objc(CollectionViewCell)
open
class
CollectionViewCell
:
UICollectionViewCell
,
Pulseable
,
PulseableLayer
{
...
...
Sources/iOS/Divider.swift
View file @
37ee9527
...
...
@@ -29,6 +29,7 @@
*/
import
UIKit
import
Motion
@objc(DividerAlignment)
public
enum
DividerAlignment
:
Int
{
...
...
Sources/iOS/Grid.swift
View file @
37ee9527
...
...
@@ -29,6 +29,7 @@
*/
import
UIKit
import
Motion
@objc(GridAxisDirection)
public
enum
GridAxisDirection
:
Int
{
...
...
Sources/iOS/Layout.swift
View file @
37ee9527
...
...
@@ -29,6 +29,7 @@
*/
import
UIKit
import
Motion
public
class
Layout
{
/// Parent UIView context.
...
...
Sources/iOS/Material+CALayer.swift
View file @
37ee9527
...
...
@@ -29,6 +29,7 @@
*/
import
UIKit
import
Motion
fileprivate
class
MaterialLayer
{
/// A reference to the CALayer.
...
...
Sources/iOS/Material+MotionAnimation.swift
View file @
37ee9527
...
...
@@ -29,6 +29,7 @@
*/
import
UIKit
import
Motion
public
extension
MotionAnimation
{
/**
...
...
Sources/iOS/NavigationItem.swift
View file @
37ee9527
...
...
@@ -29,6 +29,7 @@
*/
import
UIKit
import
Motion
/// A memory reference to the NavigationItem instance.
fileprivate
var
NavigationItemKey
:
UInt8
=
0
...
...
Sources/iOS/PulseAnimation.swift
View file @
37ee9527
...
...
@@ -29,6 +29,7 @@
*/
import
UIKit
import
Motion
@objc(PulseAnimation)
public
enum
PulseAnimation
:
Int
{
...
...
Sources/iOS/PulseView.swift
View file @
37ee9527
...
...
@@ -29,6 +29,7 @@
*/
import
UIKit
import
Motion
open
class
PulseView
:
View
,
Pulseable
,
PulseableLayer
{
/// A Pulse reference.
...
...
Sources/iOS/SnackbarController.swift
View file @
37ee9527
...
...
@@ -29,6 +29,7 @@
*/
import
UIKit
import
Motion
@objc(SnackbarControllerDelegate)
public
protocol
SnackbarControllerDelegate
{
...
...
Sources/iOS/TableViewCell.swift
View file @
37ee9527
...
...
@@ -29,6 +29,7 @@
*/
import
UIKit
import
Motion
open
class
TableViewCell
:
UITableViewCell
,
Pulseable
,
PulseableLayer
{
/**
...
...
Sources/iOS/TabsController.swift
View file @
37ee9527
...
...
@@ -29,6 +29,7 @@
*/
import
UIKit
import
Motion
fileprivate
var
TabItemKey
:
UInt8
=
0
...
...
Sources/iOS/TransitionController.swift
View file @
37ee9527
...
...
@@ -29,6 +29,7 @@
*/
import
UIKit
import
Motion
open
class
TransitionController
:
UIViewController
{
/**
...
...
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