Skip to content
View SirOlaoluwani's full-sized avatar
๐Ÿ 
At the Office.
๐Ÿ 
At the Office.
Block or Report

Block or report SirOlaoluwani

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
SirOlaoluwani/README.md

Hi there ๐Ÿ‘‹

Pinned

  1. swiftui-christmas-tree-animation swiftui-christmas-tree-animation Public

    Swift 1 1

  2. react-native-starter-graphql-react-query react-native-starter-graphql-react-query Public

    Java

  3. tommymcglynn/mortgage-calculator-react tommymcglynn/mortgage-calculator-react Public

    Mortgage Calculator as a React component.

    JavaScript 10 15

  4. Simple Alamofire Calls in Swift 4 Simple Alamofire Calls in Swift 4
    1
    import Alamofire
    2
    
                  
    3
    func makeGetCallWithAlamofire() {
    4
      let todoEndpoint: String = "https://jsonplaceholder.typicode.com/todos/1"
    5
      Alamofire.request(todoEndpoint)
  5. FloatingAnimationEffect.swift FloatingAnimationEffect.swift
    1
    func bouncingEffect(viewToBounce: UIView) {
    2
          UIView.animate(withDuration: 3.0, delay: 0.0, options: UIView.AnimationOptions.curveEaseIn, animations: {
    3
              viewToBounce.center = CGPoint(x: viewToBounce.center.x, y: viewToBounce.center.y + 10)
    4
          }, completion: { (success) in
    5
              UIView.animate(withDuration: 3.0, delay: 0.0, options: UIView.AnimationOptions.curveEaseOut, animations: {
  6. URLSession Calls in Swift 4 URLSession Calls in Swift 4
    1
    func makeGetCall() {
    2
      // Set up the URL request
    3
      let todoEndpoint: String = "https://jsonplaceholder.typicode.com/todos/1"
    4
      guard let url = URL(string: todoEndpoint) else {
    5
        print("Error: cannot create URL")