Giter Site home page Giter Site logo

Comments (6)

fabiohxcx avatar fabiohxcx commented on June 11, 2024 2

Hi Alice,

I needed to implement timeLineBuilder, eventTileBuilder, etc.

Like this:


 timeLineBuilder: (date) => Transform.translate(
        offset: Offset(0, -7.5),
        child: Padding(
          padding: const EdgeInsets.only(right: 7.0),
          child: Text(
            "${((date.hour - 1)) + 1} h",
            textAlign: TextAlign.right,
            style: TextStyle(fontSize: 15.0),
          ),
        ),
      ),
weekDayBuilder: (day) => Container(
        alignment: Alignment.center,
        margin: EdgeInsets.zero,
        padding: EdgeInsets.symmetric(vertical: 10.0),
        decoration: BoxDecoration(
          border: Border.all(
            color: Color(0xffdddddd),
            width: 0.5,
          ),
        ),
        child: Text(
          weekTitles[day],
          style: TextStyle(
            fontSize: 17,
            color: AppColors.black,
          ),
        ),
      ),

I used the default implementations as a base.

But if the owner allows us, I think we can create a Pull Request in order to implemente locale as a new feature.

from flutter_calendar_view.

AliceLespagnol avatar AliceLespagnol commented on June 11, 2024

Hello @fabiohxcx we have the same problem. Have you finally found a solution to change locale ?

Thanks

from flutter_calendar_view.

b-scharbau avatar b-scharbau commented on June 11, 2024

I had the same problem, implemented a version where you can provide a function to generate the String for the calendar title and time line (however only for the DayView yet) in my fork at https://github.com/b-scharbau/flutter_calendar_view

Can create a PR if owner is interested and implement the same functionality for the remaining components

from flutter_calendar_view.

vatsaltanna-simformsolutions avatar vatsaltanna-simformsolutions commented on June 11, 2024

Hello, We would love to have your contribution to this repository. so feel free to create a PR for any bug fix or an enhancement.

Thanks

from flutter_calendar_view.

b-scharbau avatar b-scharbau commented on June 11, 2024

Added PR #36

from flutter_calendar_view.

faiyaz-shaikh avatar faiyaz-shaikh commented on June 11, 2024

Added in 1.0.1 PR #107 #36

from flutter_calendar_view.

Related Issues (20)

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.