Code Monkey home page Code Monkey logo

refrostedviewcontroller's Introduction

REFrostedViewController

iOS 7/8 style blurred view controller that appears on top of your view controller.

REFrostedViewController Screenshot

REFrostedViewController Screenshot

Requirements

  • Xcode 6 or higher
  • Apple LLVM compiler
  • iOS 6.0 or higher
  • ARC

Demo

Build and run the REFrostedViewControllerExample project in Xcode to see REFrostedViewController in action.

Installation

CocoaPods

The recommended approach for installating REFrostedViewController is via the CocoaPods package manager, as it provides flexible dependency management and dead simple installation. For best results, it is recommended that you install via CocoaPods >= 0.28.0 using Git >= 1.8.0 installed via Homebrew.

Install CocoaPods if not already available:

$ [sudo] gem install cocoapods
$ pod setup

Change to the directory of your Xcode project:

$ cd /path/to/MyProject
$ touch Podfile
$ edit Podfile

Edit your Podfile and add REFrostedViewController:

platform :ios, '6.0'
pod 'REFrostedViewController', '~> 2.4'

Install into your Xcode project:

$ pod install

Open your project in Xcode from the .xcworkspace file (not the usual project file)

$ open MyProject.xcworkspace

Please note that if your installation fails, it may be because you are installing with a version of Git lower than CocoaPods is expecting. Please ensure that you are running Git >= 1.8.0 by executing git --version. You can get a full picture of the installation details by executing pod install --verbose.

Manual Install

All you need to do is drop REFrostedViewController files into your project, and add #include "REFrostedViewController.h" to the top of classes that will use it.

Your project must be linked against the Accelerate framework.

Example Usage

In your AppDelegate's - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions create the view controller and assign content and menu view controllers.

// Create content and menu controllers
//
DEMONavigationController *navigationController = [[DEMONavigationController alloc] initWithRootViewController:[[DEMOHomeViewController alloc] init]];
DEMOMenuViewController *menuController = [[DEMOMenuViewController alloc] initWithStyle:UITableViewStylePlain];

// Create frosted view controller
//
REFrostedViewController *frostedViewController = [[REFrostedViewController alloc] initWithContentViewController:navigationController menuViewController:menuController];
frostedViewController.direction = REFrostedViewControllerDirectionLeft;

// Make it a root controller
//
self.window.rootViewController = frostedViewController;

You can present it manually:

[self.frostedViewController presentMenuViewController];

or using a pan gesture recognizer:

- (void)panGestureRecognized:(UIPanGestureRecognizer *)sender
{
    [self.frostedViewController panGestureRecognized:sender];
}

Live Blur

By default, live blurring is enabled under iOS 7. The live blurring is performed by using a UIToolbar as a background view, that means when you change its tint color, it becomes desaturated. That's the way it works on iOS 7. iPhone 4 doesn't support live blur and falls back to a transparent view. This also applies to when a user device has high contrast accessibility setting set to on. To disable live blurring, set liveBlur property to NO.

Storyboards Example

  1. Create a subclass of REFrostedViewController. In this example we call it DEMORootViewController.
  2. In the Storyboard designate the root view's owner as DEMORootViewController.
  3. Make sure to #import "REFrostedViewController.h" in DEMORootViewController.h.
  4. Add more view controllers to your Storyboard, and give them identifiers "menuController" and "contentController". Note that in the new XCode the identifier is called "Storyboard ID" and can be found in the Identity inspector.
  5. Add a method awakeFromNib to DEMORootViewController.m with the following code:
- (void)awakeFromNib
{
    self.contentViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"contentController"];
    self.menuViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"menuController"];
}

Customization

You can customize the following properties of REFrostedViewController:

@property (strong, readonly, nonatomic) UIPanGestureRecognizer *panGestureRecognizer;
@property (assign, readwrite, nonatomic) BOOL panGestureEnabled;
@property (assign, readwrite, nonatomic) REFrostedViewControllerDirection direction;
@property (assign, readwrite, nonatomic) CGFloat backgroundFadeAmount;
@property (strong, readwrite, nonatomic) UIColor *blurTintColor; // Used only when live blur is off
@property (assign, readwrite, nonatomic) CGFloat blurRadius; // Used only when live blur is off
@property (assign, readwrite, nonatomic) CGFloat blurSaturationDeltaFactor; // Used only when live blur is off
@property (assign, readwrite, nonatomic) NSTimeInterval animationDuration;
@property (assign, readwrite, nonatomic) BOOL limitMenuViewSize;
@property (assign, readwrite, nonatomic) CGSize menuViewSize;
@property (assign, readwrite, nonatomic) BOOL liveBlur; // iOS 7 only
@property (assign, readwrite, nonatomic) REFrostedViewControllerLiveBackgroundStyle liveBlurBackgroundStyle; // iOS 7 only

Credits

Inspired by a Dribbble shot, author Jackie Tran.

The blur algorithm that is used for static blur comes from WWDC 2013's session 208, "What's New in iOS User Interface Design".

Contact

Roman Efimov

License

REFrostedViewController is available under the MIT license.

Copyright © 2013 Roman Efimov.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

refrostedviewcontroller's People

Contributors

andreamazz avatar barbosa avatar bismark avatar candyan avatar cconstable avatar hodgesmr avatar ierceg avatar luhui avatar romaonthego avatar user454322 avatar yosit avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

refrostedviewcontroller's Issues

Call and execute MenuViewController method from presented ViewController

I have an application that on the didFinishLaunchingWithOptions determines if the rootviewcontroller will be the login or dashboard depending if the user has is authenticated.

If the login screen is presented as soon as the user enters his credentials the dashboard screen needs to show up.

I have a method on my MenuViewController that handles the didselectrow of the table and displays the new selected screen. I did get to call this method from my login screen to display the dashboard but it does nothing.

How can I get to display my dashboard from the login screen?

I did a method on my appDelegate that changes the window rootviewcontroller, I know this is not the correct way is just something to keep my application running in the meanwhile.

Gesture problems with UITableView

When panGesture is enabled, the top controller (has a tableView inside) doesn't scroll up and down properly on same cells (pretty random cells). When this occurs, the menu's pan gesture is triggered instead.

I have also noticed this problem when the Left Menu has a table view.

I have been trying to get it to work for both gestures, but not successful so far.

Menu do the slide animation again after a modal view is dismissed

Steps to reproduce:

  • Open the menu (i.e. slide animation)
  • Display a modal view controller
  • Dismiss the modal view controller
  • The menu will do the opening slide animation again

Expected behaviour:
The menu should not do the opening slide animation again. It should stay still when already open.

Slide out not working well when app launches

When you launch the app for the first time and try swipe your finger across the screen, the frosted view controller comes out with a jerk.

This does not happen hence after. It works well second time onwards ...

Add ability to live update the blur

One of the things standing in my way of adopting this control is the fact that the blurred image is static. If the view behind the menu changes, it breaks the whole effect. So I was thinking even just a simple timer that refreshes the blur image every x milliseconds would be a simple way to achieve that. I don't know what the performance hit would be. I've been intending to implement it myself but haven't had the chance so thought I'd suggest it in case you've already considered this.

Rotation issue on iPhone only. Using storyboards.

The issue also exists in your storyboard example.

It only shows up on the iPhone, not the iPad. Run the example. The first VC does not resize.

I am having the same issue. I was thinking it was something to do with my code, but after finding that the issue also exists in the example, I believe something might've been missed. Quite peculiar that the problem is only showing up on the iPhone.

I'm using a UICollectionView inside my VC and a single button. On device rotation, the container rotates but the inner VCs don't resize. Help?

warx2db

The parent view's frame shifts when calling presentFromViewController on iPad

This problem is caused by re_screenshot in UIView+REFrostedViewController.h

I've changed the implementation to

UIGraphicsBeginImageContext(self.bounds.size);
[self.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *screenShot = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

And this fixed the problem.

REFrostedViewControllerStoryboards sending values to other controllers

I'm using REFrostedViewControllerStoryboards and have a tableviewcontroller for the "home" controller. On the menu I have a sort option, but when I tap on it the tableviewcontroller viewdidload is always called like it is a new controller instantiation each time. How do I use the menu, but keep the "home" controller in a state that I can sort, etc.

Thanks

Menu view controller displayed under navigation bar

Hi,

I have an application that uses the following navigation flow:

  1. REFrostedViewController where the content view is a UINavigationController, the menu is correctly displayed (on top of everything) on the left side
  2. Another REFrostedViewController is pushed in the content view controller, with a menu on the right side. This menu is displayed under the navigation bar.

When the navigation bar is not translucent, this is acceptable, but this is not working when the bar is translucent because the menu content is under the translucent bar.

Could you make sure (or add a BOOL property to make sure) the menu is always displayed on top of everything?

Anyhow, great control, good job!

Live blur no longer enabled by default on iOS 7.1

The default behaviour of REFrostedViewController seems to have changed between iOS 7.0 and 7.1. In 7.0, live updating is enabled by default, while in 7.1 it is disabled. You can still get live updating in the latter case by setting the liveBlur property of REFrostedViewController to YES, but it might be a good idea to explicitly make this the default to avoid inconsistent behaviour between OS versions.

Allow Zero as a valid value in width/height of minimumMenuViewSize

I'd like to limit the width for menus with a direction of left/right, so that (especially on iPads) the menu doesn't end up taking the whole screen.

I figured that I'd have to set limitMenuViewSize to YES and set minimumMenuViewSize to the maximum size.

First, it's a bit confusing to call the property "minimumMenuViewSize" when it describes the "maximum" dimensions of the menu.

Secondly, and more importantly, it's awkward to handle rotation situations properly with the limits enabled. Let's say you set it to something like CGSizeMake(300, 1024), the menu will be filling the screen vertically and be 300 points wide. If you rotate the device now, the menu will remain at 1024 and screw up the user experience. The only way to work around this is to manually "fix" the width/height after a rotation - and that wouldn't feel very good.

What I'd like to see is to be able to assign a zero value to either the width or height, so that it limits the size of the menu in one dimension while keeping it properly sized in the other direction.

So for instance, a menu that has a maximum width of 300, but fills the height of the screen, could be defined as follows:

menu.maximumMenuSize = CGSizeMake(300, 0);

Respectively, having the default behaviour would be like this:

menu.maximumMenuSize = CGSizeMake(0, 0); // or CGSizeZero

By respecting the zero value in both directions, it would also allow you to get rid of the limitMenuViewSize flag at all, which would simplify the API.

viewWillAppear gets called twice in child view controllers

I've noticed that in some cases, the viewWillAppear: method gets called twice in the child view controller. This usually happens when dismissing a modal view presented by the content view controller.

This may in some cases create unexpected side effects if some logics are to run in viewWillAppear:

A temporary workaround is to add the following three methods,

-(BOOL)shouldAutomaticallyForwardAppearanceMethods{
return NO;
}

-(BOOL)shouldAutomaticallyForwardRotationMethods{
return NO;
}

-(BOOL)automaticallyForwardAppearanceAndRotationMethodsToChildViewControllers{
return NO;
}

to REFrostedViewController.

Not sure if this is the best solution. Any ideas?

Edit: This actually breaks the codes somehow. Tapping on the menu icon doesn't always bring out the menu as the result..

Long Tap issue

Hi~, I'm use your project in my project, I fount a question. When I tap a UITextFiled or UITextView to copy/paste something, a issue comes: "CGContextSetBlendMode: invalid context 0x0. This is a serious error. This application, or a library it uses, is using an invalid context and is thereby contributing to an overall degradation of system stability and reliability. This notice is a courtesy: please fix this problem. It will become a fatal error in an upcoming update." It's make me trouble, I can't fixed it. If you have free time, please help me. Thank you.

Rotation Problem

I have 3 View Controllers in my storyboard....Root, Menu & Content.

Prior to adding this menu, the Content would rotate fine on my iPad (basically just a collection view and a navbar).

After adding this control (and the Root & Menu controllers), the screen rotates fine, but the Content controller does NOT rotate, leaving the navbar title not centered, and the sizing of the collection view doesn't change (to allow more columns on landscape).

2.4.4 not available in Cocoapods

Please see error below :
Resolving dependencies for target `Pods' (iOS 6.0)

  • REFrostedViewController (> 2.4.4)
    [!] Required version (REFrostedViewController (
    > 2.4.4)) not found for REFrostedViewController.
    Available versions: 2.4.3, 2.4.2, 2.4.1, 2.4, 2.3.4, 2.3.3, 2.3.2, 2.3.1, 2.3, 2.2.1, 2.2, 2.1.2, 2.1.1, 2.1, 2.0.2, 2.0.1, 2.0, 1.0.1, 1.0

Rotation issues in general & landscape appearance

Hi.
There is an issue with landscape mode, where the menu controller's frame isn't either calculated or set properly causing what you can see in attached gif.
refrost
As you can see a menu view controller gets frame as if it was portrait and so the scrolling is continue under visible part of the screen...

Dismiss Keyboard When Slide Menu Appears

Currently, if a keyboard is active when the side menu is invoked then the keyboard remains active whereas a more intuitive behaviour would be to dismiss the keyboard, if possible.

Feature Request: Proportionally darken view as drawer slides

Using the amazon kindle app you can see the background view darken in real time as the drawer slides out and lighten in real time as the drawer slides in.

With REFrostedViewController the darkening and lightening is performed in a single animation.

To test this, simply tap & hold, and drag the menu the entire way out. Upon releasing you will see the background view darken quickly.

Would there be a way to make this act closer to the amazon kindle app?

Menu dragging with content

For example I have left REFrostedViewController.
With standard parameters.
If I drag menu to the right - it resize yourself but not content.
If it possible to disable this gestures without disable anything else or enable resize content? I prefer second way :)

Unable to use with storyboard layout

I am trying to set this up using a storyboard layout but I cannot get this to work.

I.e. from the menu controller didSelect... I try the following:
ProfileViewController *profileViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"ProfileViewController"];;
self.navigationController.viewControllers = @[profileViewController];

This crashes with:
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSPlaceholderArray initWithObjects:count:]: attempt to insert nil object from objects[0]'

Resize menu while open

Is there a pattern in place to expand the frosted view to take up the entire width of the screen?

For example, if I put a search bar in the side menu, I'd like the menu to expand to fill the screen while the search is in focus, and then shrink back do to "most" of the screen when the search is not in focus.

I tried manually adjusting the menuSize but I'm unsure of how to make the menu resize while it is open.

Thanks!

Default blur mode on iphone4 (ios7)

Hi Roman,

I've tried this library on the iphone 4 with ios7 running, and found a small interesting issue.

liveBlur mode depends now on ios version, but I believe that on older devices (iphone 4) this blur is turned off for better performance. So, by default, I get this picture (below).
Manually setting liveBlur to NO helps.

You might want to reflect this issue in the documentation, or elsewhere.

img_0264

Thanks for your work. :)

cell.selectedBackgroundView not really following the animation when hiding the menu

For some design reasons, I need the background of the cells to appear white when I click on them, I basically do it by adding those lines in the method cellForRowAtIndexPath in the DemoMenuViewController:

    UIImageView *bgView = [[UIImageView alloc]initWithFrame:cell.frame];
    bgView.backgroundColor = [UIColor whiteColor];
    cell.selectedBackgroundView = bgView;

There is like an offset between the actual cell and the white background when the menu is hiding. Hardly noticeable, I would say it's a minor issue but I'll see what I can do and work on it :)

Menu content view controller's size is not correct at first

When showing the menu the first time (left or right), the size of its content view is not correct. This produces a very weird effect if the background of this content view is not clear.

ios simulator screen shot 29 oct 2013 22 30 57

When showing it again, the content view's size is correct.
ios simulator screen shot 29 oct 2013 22 31 00

Change the tint color make the blurry image black & white

this is the code i used to change the tint color:

self.frostedViewController.blurTintColor = [UIColor colorWithRed:0.208 green:0.239 blue:0.275 alpha:1.000];

the color should be like
screen shot 2014-02-13 at 4 08 04 pm

but it ends up like:

screen shot 2014-02-13 at 4 08 12 pm

Looks like everything behind the side menu becomes black and white

Post notifications when showing / hiding the menu

Several notifications could be provided:

  • REFrostedViewControllerMenuWillAppearNotification
  • REFrostedViewControllerMenuDidAppearNotification
  • REFrostedViewControllerMenuWillDisappearNotification
  • REFrostedViewControllerMenuDidDisappearNotification

Replace contentViewController

Currently when calling setContentViewController to a new VC, the view does not get updated on-screen. It seems that it assumes you're always modifying an existing UIViewController (in your example a UINavigationController) by replacing the view controllers in its stack.

I'm looking to fully replace the contentViewController then dismiss the menu -- possible?

REFrostedViewController in detailviewcontroller ONLY of UISplitViewController

Hello, I am trying to implement the REfrostedviewcontroller (FVC) in only the detail side of the UISplitViewController (SVC). I have tried many things but not able to get it to work.

For a first attempt, I set the detail view of SVC to be the DEMOrootviewcontroller. I got the FVC to be working either from the left side or right side or both sides. However, the "original" detail view (which is a tableVC) was not getting updated. I sent data to this tableVC via a delegate and still the tableVC was not behaving as it used to.

Then, I kept the original configuration i.e. the detail view was the original tableVC. However, in this case, the FVC does not work - the menu does not show up. I noticed that the self.frostedviewcontroller is nil, since the parentVC is the SVC and not the FVC.

There were other trys - were not successful. Is there any way to accomplish the above? Thank you.

Change UIStatusBar appearance on menu hide/show

Right now, I don't see any functionality for animation and changing the UIStatusBar style on menu hide/show. If I am using a black style for the frosted drawer I would prefer a white status bar, however the status bar has to be black for all other view controllers in the app.

Don't always reanimate when appearing

I attempted to fix this with #58 but that created different bugs.

The issue:

  • Open the drawer
  • Modally present a view controller in front of drawer
  • Dismiss modal view controller
  • Draw re-animates out

At attempted to fake a fix by setting the drawer's animation duration to 0 but that still created a little bit of a stutter. I'm not sure what the right answer for this is.

Edit: I suppose I should ask--is there already a mechanism in place that would let me do this from the frostedViewController?

UITabBarController + REFrostedViewController: Touch gestures not working properly after orientation change

Touch gestures (tap, swipe) do not work properly when using a UITabBarController and the orientation changes to landscape. Here is how to reproduce the problem:

  1. Open the REFrostedViewController project in Xcode 5 (testing with iOS 7)
  2. Open Main.storyboard
  3. Single click on the "Root View Controller" scene
  4. Choose Editor | Embed In | Tab Bar Contoller
  5. Run the app with portrait orientation
  6. Open the frosted side bar menu
  7. Rotate to landscape
  8. Tap/scroll/swipe the right side of the screen and you'll see that gestures don't work

Lack of option to disable desaturation when using liveBlur

When the liveBlur option is on, the image that becomes blurred is completely desaturated. turning liveBlur off solves the problem, except that the blurred image isn't updated everytime the menu is opened so if the things behind the menu have moved, the blurred image is now incorrect.

menu is floating behind statusbar with ios < 7.0

the startpoint of the menu is 0,0 of the total screen. the status bar is covering the first 20px. with >= 7.0 the behavior is just fine but not below. looking for a solution, but maybe you already know? thanks

Beautiful design, idea for improvement: Make it a container controller

This control is at once both clever and beautiful, but its programmatic interface leaves a little to be desired, imo. My biggest complaint is how you have to use it. REFrostedViewController is a sublcass of UIViewController, and the demo project implies that it is intended to be subclassed again into another view controller that represents the menu and is then presented from an arbitrary other view controller.

This seems awkward and unintuitive to me, and I still haven't figured out how to properly use a different kind of view controller (UINavigationController, UITableViewController) as the menu.

I think it would be magnitudes easier to use if it were refactored as a container controller (see https://developer.apple.com/library/ios/featuredarticles/ViewControllerPGforiPhoneOS/CreatingCustomContainerViewControllers/CreatingCustomContainerViewControllers.html) and exposed two child view controller properties/setters for the menuViewController and the contentViewController. Then you could simply wire it up to any two existing view controllers (no matter what type they are) and it would just work.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.