One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| import datetime | |
| from graphql import GraphQLObjectType, GraphQLScalarType, GraphQLSchema, graphql, parse | |
| from graphql.execution.base import ResolveInfo | |
| from graphql.utils.build_ast_schema import build_ast_schema | |
| def build_schema(schema_description: str): | |
| ast_schema = parse(schema_description) | |
| return build_ast_schema(ast_schema) |
| import android.content.Context; | |
| import android.content.res.TypedArray; | |
| import android.graphics.Canvas; | |
| import android.graphics.Rect; | |
| import android.graphics.drawable.Drawable; | |
| import android.support.v7.widget.LinearLayoutManager; | |
| import android.support.v7.widget.RecyclerView; | |
| import android.util.AttributeSet; | |
| import android.view.View; |