- Backup your .sketch file, it's going to be destroyed.
- Select all artboards you want to export to .sketch files.
- Run this script and find your new .sketch files on Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* https://gist.github.com/tadija/3a5575f234740515f82d16f235721c84 | |
* Revision 9 | |
* Copyright © 2019-2021 Marko Tadić | |
* Licensed under the MIT license | |
*/ | |
import UIKit | |
public final class AEDevice { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* https://gist.github.com/tadija/dcdf25983c0dbf410e430221f74b20df | |
* Revision 4 | |
* Copyright © 2016-2021 Marko Tadić | |
* Licensed under the MIT license | |
*/ | |
import CoreLocation | |
@available(iOS 9.0, *) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* https://gist.github.com/tadija/21d56c68bf06a5cea48e6c597e399bf6 | |
* Revision 3 | |
* Copyright © 2018-2021 Marko Tadić | |
* Licensed under the MIT license | |
*/ | |
import Foundation | |
import SQLite3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* https://gist.github.com/tadija/88779a34d66bb5acff5c9513c78fe885 | |
* Revision 5 | |
* Copyright © 2018-2021 Marko Tadić | |
* Licensed under the MIT license | |
*/ | |
import UIKit | |
@available(iOS 10.0, *) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* https://gist.github.com/tadija/55e566df601347ebedc449b2aa610c28 | |
* Revision 5 | |
* Copyright © 2015-2021 Marko Tadić | |
* Licensed under the MIT license | |
*/ | |
import UIKit | |
@IBDesignable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* https://gist.github.com/tadija/535f88d01ef0d779ed955205ca2ab242 | |
* Revision 7 | |
* Copyright © 2018-2021 Marko Tadić | |
* Licensed under the MIT license | |
*/ | |
import UserNotifications | |
public struct UserNotification { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* https://gist.github.com/tadija/c20479d0012baaaacd699ecdc1511579 | |
* Revision 8 | |
* Copyright © 2018-2021 Marko Tadić | |
* Licensed under the MIT license | |
*/ | |
import Foundation | |
// MARK: - Core |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* https://gist.github.com/tadija/6003830264d67a87193ff0c3d20373e7 | |
* Revision 10 | |
* Copyright © 2018-2021 Marko Tadić | |
* Licensed under the MIT license | |
*/ | |
import CoreData | |
@available(iOS 10.0, *) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* https://gist.github.com/tadija/25bad580b3228e5255b0e67c440e3d3b | |
* Copyright (c) Marko Tadić 2018 | |
* Licensed under the MIT license. See LICENSE file. | |
*/ | |
import UIKit | |
protocol AEStyle { | |
associatedtype FontKey: Hashable |